Wallet/views/includes/copayer.html

16 lines
557 B
HTML
Raw Normal View History

2014-09-02 10:51:09 -03:00
<div ng-controller="CopayersController">
<div class="copay-box" ng-repeat="copayer in copayersList()">
2014-10-31 18:35:44 -03:00
<span ng-include="'views/includes/photo.html'"></span>
<div
class="ellipsis"
tooltip="ID: {{copayer.peerId}}"
tooltip-placement="bottom">
<small class="text-gray" ng-show="copayer.index == 0">
<i class="fi-check m5r"></i> {{'Me'|translate}}
</small>
<small class="text-gray" ng-show="copayer.index > 0">
<i class="fi-check m5r"></i> {{copayer.nick}}
</small>
</div>
</div>
</div>