Files
habitica/website/views/shared/profiles/stats/equipment.jade
T
2016-07-17 21:42:43 -05:00

9 lines
499 B
Plaintext

h4.stats-equipment(ng-show='user.flags.itemsEnabled')=env.t('battleGear')
table.table.table-striped(ng-show='user.flags.itemsEnabled')
tr(ng-repeat='(itemType,gear) in profile.items.gear.equipped',
ng-init='piece=Content.gear.flat[gear]', ng-show='piece')
td
strong {{piece.text()}}
strong(ng-show='piece.str || piece.con || piece.per || piece.int') : 
span(ng-repeat='stat in ["str","con","per","int"]', ng-show='piece[stat]') {{piece[stat]}} {{env.t(stat)}}