copay/views/includes/copayers.html

19 lines
567 B
HTML
Raw Normal View History

2014-12-09 06:52:01 -08:00
<div>
<div class="copay-box" ng-repeat="copayer in copayers">
2014-11-19 12:09:16 -08: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>