Wallet/views/includes/copayer.html

20 lines
681 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()">
<img
2014-09-02 11:02:59 -03:00
class="br100 online"
src="./img/satoshi.gif"
2014-09-02 10:51:09 -03:00
alt="{{copayer.peerId}}"
2014-07-22 17:40:12 -03:00
width="70">
<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>
2014-07-22 17:40:12 -03:00
<small class="text-gray" ng-show="copayer.index > 0"><i class="fi-check m5r"></i>{{copayer.nick}}</small>
</div>
<div translate class="success label m10t" ng-show="isBackupReady(copayer)">Ready</div>
</div>
</div>