diff --git a/website/views/shared/profiles/stats.jade b/website/views/shared/profiles/stats.jade index c82674f731..c728819759 100644 --- a/website/views/shared/profiles/stats.jade +++ b/website/views/shared/profiles/stats.jade @@ -14,5 +14,6 @@ mixin statList(calculatedStat, popover, text, useOneTimeBinding) include ./stats/basic-stats include ./stats/equipment +include ./stats/costume include ./stats/attributes include ./stats/pets-and-mounts diff --git a/website/views/shared/profiles/stats/costume.jade b/website/views/shared/profiles/stats/costume.jade new file mode 100644 index 0000000000..7009d07358 --- /dev/null +++ b/website/views/shared/profiles/stats/costume.jade @@ -0,0 +1,7 @@ +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