Wallet/views/includes/copayer.html
Matias Alejo Garcia 99dd65ed07 add gravatars
2014-11-12 19:20:04 -03:00

16 lines
561 B
HTML

<div ng-controller="CopayersController">
<div class="copay-box" ng-repeat="copayer in copayersList()">
<img gravatar-src="'{{copayer.nick}}'" gravatar-size="35">
<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>