2016-10-16 21:51:50 -03:00
|
|
|
<ion-view id="address-book-view" hide-tabs>
|
2016-09-12 11:57:20 -03:00
|
|
|
<ion-nav-bar class="bar-royal">
|
2016-09-16 17:14:22 -03:00
|
|
|
<ion-nav-back-button>
|
|
|
|
|
</ion-nav-back-button>
|
2016-09-12 11:57:20 -03:00
|
|
|
<ion-nav-title>
|
2016-10-13 00:02:06 -04:00
|
|
|
<span>{{addressbookEntry.name}}</span>
|
2016-09-12 11:57:20 -03:00
|
|
|
</ion-nav-title>
|
|
|
|
|
</ion-nav-bar>
|
2016-10-13 00:02:06 -04:00
|
|
|
<ion-content scroll="false">
|
2016-09-13 17:39:01 -03:00
|
|
|
<div class="gravatar-content">
|
2017-01-05 16:58:58 -03:00
|
|
|
<i class="icon big-icon-svg" ng-if="isChromeApp">
|
|
|
|
|
<img src="img/contact-placeholder.svg" class="bg"/>
|
|
|
|
|
</i>
|
|
|
|
|
<gravatar name="{{addressbookEntry.name}}" width="80" email="{{addressbookEntry.email}}" ng-if="!isChromeApp"></gravatar>
|
2016-09-13 17:39:01 -03:00
|
|
|
</div>
|
2016-10-13 00:02:06 -04:00
|
|
|
<div class="list">
|
2016-09-12 11:57:20 -03:00
|
|
|
<div class="item item-text-wrap">
|
2016-10-13 00:02:06 -04:00
|
|
|
<span class="address-book-field-label" translate>Name</span>
|
|
|
|
|
<span>{{addressbookEntry.name}}</span>
|
2016-09-12 11:57:20 -03:00
|
|
|
</div>
|
2016-09-30 13:19:29 -03:00
|
|
|
<div class="item item-text-wrap" ng-show="addressbookEntry.email">
|
2016-10-13 00:02:06 -04:00
|
|
|
<span class="address-book-field-label" translate>Email</span>
|
|
|
|
|
<span>{{addressbookEntry.email}}</span>
|
2016-09-12 11:57:20 -03:00
|
|
|
</div>
|
2017-05-30 12:58:41 -03:00
|
|
|
<div class="item item-text-wrap" copy-to-clipboard="addressbookEntry.address">
|
|
|
|
|
<span class="address-book-field-label" translate>Address</span>
|
2016-10-13 00:02:06 -04:00
|
|
|
<span>{{addressbookEntry.address}}</span>
|
2016-09-12 11:57:20 -03:00
|
|
|
</div>
|
2017-11-02 16:31:34 +09:00
|
|
|
<div class="item item-text-wrap" copy-to-clipboard="addressbookEntry.coin">
|
|
|
|
|
<span class="address-book-field-label" translate>Coin</span>
|
|
|
|
|
<span>{{coinAlias}}</span>
|
|
|
|
|
</div>
|
2017-05-30 12:58:41 -03:00
|
|
|
<div class="item item-divider"></div>
|
|
|
|
|
<div class="item item-icon-right has-click" ng-click="sendTo()">
|
|
|
|
|
<span class="positive" translate>Send Money</span>
|
|
|
|
|
<i class="icon bp-arrow-right"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item item-divider"></div>
|
|
|
|
|
<div class="item has-click" ng-click="remove(addressbookEntry.address)">
|
|
|
|
|
<span class="assertive" translate>Remove</span>
|
|
|
|
|
</div>
|
2017-11-02 16:31:34 +09:00
|
|
|
</div>
|
2016-09-12 11:57:20 -03:00
|
|
|
</ion-content>
|
|
|
|
|
</ion-view>
|