Wallet/views/includes/copayers.html
Matias Alejo Garcia 475f6ea29e fix copayers
2014-12-09 18:20:15 -03:00

18 lines
567 B
HTML

<div>
<div class="copay-box" ng-repeat="copayer in copayers">
<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>