Wallet/views/includes/copayer.html

18 lines
608 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-11-19 17:09:16 -03:00
<div class="photo-container">
<img gravatar-src="'{{copayer.nick}}'" gravatar-size="35">
</div>
<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>