diff --git a/website/views/shared/profiles/stats/costume.jade b/website/views/shared/profiles/stats/costume.jade index 7009d07358..6ad032a86c 100644 --- a/website/views/shared/profiles/stats/costume.jade +++ b/website/views/shared/profiles/stats/costume.jade @@ -1,7 +1,5 @@ -unless mobile - h4(class=mobile?'item item-divider':'', - ng-show='profile.preferences.costume && user._id != profile._id')=env.t('costume') - table.table.table-striped(ng-show='profile.preferences.costume && user._id != profile._id') - tr(ng-repeat='(itemType,gear) in profile.items.gear.costume', ng-init='piece=Content.gear.flat[gear]', ng-show='piece') - td - strong {{piece.text()}} \ No newline at end of file +h4(ng-show='profile.preferences.costume')=env.t('costume') +table.table.table-striped(ng-show='profile.preferences.costume') + tr(ng-repeat='(itemType,costume) in profile.items.gear.costume', ng-init='piece=Content.gear.flat[costume]', ng-show='piece') + td + strong {{piece.text()}} \ No newline at end of file diff --git a/website/views/shared/profiles/stats/equipment.jade b/website/views/shared/profiles/stats/equipment.jade index 83c217bea4..d5fddfa4b8 100644 --- a/website/views/shared/profiles/stats/equipment.jade +++ b/website/views/shared/profiles/stats/equipment.jade @@ -1,10 +1,8 @@ -unless mobile - h4.stats-equipment(class=mobile?'item item-divider':'', - 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)}}  +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)}}