copay/public/views/preferencesAbout.html

43 lines
1.4 KiB
HTML
Raw Normal View History

2016-08-17 09:07:48 -07:00
<ion-view>
<ion-nav-bar class="bar-royal">
2016-08-15 13:42:04 -07:00
<ion-nav-buttons side="primary">
2016-09-01 09:16:28 -07:00
<button class="button back-button" ui-sref="tabs.settings">
<i class="icon ion-ios-arrow-thin-left"></i>
2016-08-19 07:32:26 -07:00
</button>
</ion-nav-buttons>
2016-08-15 13:42:04 -07:00
</ion-nav-bar>
2016-08-29 12:48:15 -07:00
<ion-content ng-controller="preferencesAbout">
2016-09-01 06:12:06 -07:00
<div class="item item-divider" translate>
2016-08-15 13:42:04 -07:00
Release information
2015-04-25 08:37:04 -07:00
</div>
2016-08-15 13:42:04 -07:00
<div class="item item-icon-left">
<i class="icon ion-ios-film-outline"></i>
<span translate>Version</span>
<span class="item-note">
2016-09-02 10:04:19 -07:00
v{{version}}
2016-08-15 13:42:04 -07:00
</span>
</div>
2016-09-02 10:04:19 -07:00
<div class="item item-icon-left" ng-click="$root.openExternalLink('https://github.com/bitpay/copay/tree/'+commitHash)">
2016-08-15 13:42:04 -07:00
<i class="icon ion-ios-film-outline"></i>
<span translate>Commit hash</span>
<span class="item-note">
2016-09-02 10:04:19 -07:00
#{{commitHash}}
2016-08-15 13:42:04 -07:00
</span>
</div>
<div class="item item-divider">
</div>
<div class="item item-icon-left" href ui-sref="tabs.termsOfUse">
2016-08-15 13:42:04 -07: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="tabs.translators">
2016-08-15 13:42:04 -07:00
<i class="icon ion-ios-bell-outline"></i>
<span translate>Translators</span>
</div>
<div class="item item-icon-left" href ui-sref="tabs.logs">
2016-08-15 13:42:04 -07:00
<i class="icon ion-ios-bell-outline"></i>
<span translate>Session log</span>
</div>
</ion-content>
</ion-view>