Wallet/views/includes/peer-list.html

22 lines
687 B
HTML
Raw Normal View History

2014-09-02 10:51:09 -03:00
<div ng-controller="CopayersController" class="copayers">
<h3>
<i class="fi-torsos-all size-21 m20r"></i>
Copayers
<small class="m15l">
{{$root.wallet.requiredCopayers}} of {{$root.wallet.totalCopayers}}
</small>
</h3>
2014-09-02 10:51:09 -03:00
<div class="copay-box-small" ng-repeat="copayer in copayers">
<img
2014-09-02 11:02:59 -03:00
class="br100 online"
2014-09-02 10:51:09 -03:00
src="./img/satoshi.gif"
alt="{{copayer.peerId}}"
width="30">
2014-09-02 11:02:59 -03:00
<div class="ellipsis" tooltip-placement="top" tooltip="{{copayer.nick}}">
2014-09-02 10:51:09 -03:00
<small class="text-gray" ng-show="copayer.index == 0">Me</small>
<small class="text-gray" ng-show="copayer.index > 0">{{copayer.nick}}</small>
</div>
</div>
</div>