Wallet/public/views/preferencesAbout.html

42 lines
1.4 KiB
HTML
Raw Normal View History

2016-08-17 13:07:48 -03:00
<ion-view>
2016-08-29 16:48:15 -03:00
<ion-nav-bar>
2016-08-15 17:42:04 -03:00
<ion-nav-buttons side="primary">
2016-08-29 16:48:15 -03:00
<button class="button button-stable no-border" ui-sref="tabs.settings">
<i class="icon ion-chevron-left"></i> {{'Back' | translate}}
2016-08-19 11:32:26 -03:00
</button>
</ion-nav-buttons>
2016-08-15 17:42:04 -03:00
</ion-nav-bar>
2016-08-29 16:48:15 -03:00
<ion-content ng-controller="preferencesAbout">
2016-08-15 17:42:04 -03:00
<div class="item item-divider">
Release information
2015-04-25 12:37:04 -03:00
</div>
2016-08-15 17:42:04 -03:00
<div class="item item-icon-left">
<i class="icon ion-ios-film-outline"></i>
<span translate>Version</span>
<span class="item-note">
v{{v.version}}
</span>
</div>
<div class="item item-icon-left" ng-click="$root.openExternalLink('https://github.com/bitpay/copay/tree/'+v.commitHash)">
<i class="icon ion-ios-film-outline"></i>
<span translate>Commit hash</span>
<span class="item-note">
#{{v.commitHash}}
</span>
</div>
<div class="item item-divider">
</div>
2016-08-25 16:31:47 -03:00
<div class="item item-icon-left" href ui-sref="settings.termsOfUse">
2016-08-15 17:42:04 -03:00
<i class="icon ion-ios-bell-outline"></i>
<span translate>Terms of Use</span>
</div>
<div class="item item-icon-left" href ui-sref="settings.translators">
2016-08-15 17:42:04 -03:00
<i class="icon ion-ios-bell-outline"></i>
<span translate>Translators</span>
</div>
<div class="item item-icon-left" href ui-sref="settings.logs">
2016-08-15 17:42:04 -03:00
<i class="icon ion-ios-bell-outline"></i>
<span translate>Session log</span>
</div>
</ion-content>
</ion-view>