mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
10 lines
500 B
Text
10 lines
500 B
Text
|
|
unless mobile
|
||
|
|
h4.stats-equipment(class=mobile?'item item-divider':'',
|
||
|
|
ng-show='user.flags.itemsEnabled')=env.t('equipment')
|
||
|
|
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()}}:
|
||
|
|
span(ng-repeat='stat in ["str","con","per","int"]', ng-show='piece[stat]') {{piece[stat]}} {{stat.toUpperCase()}}
|