Add @paglias suggested fixes
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
.achievement.achievement-helm
|
||||
h5
|
||||
span.label.label-npc
|
||||
{{profile.backer.npc}}
|
||||
| {{profile.backer.npc}}
|
||||
=env.t('npc')
|
||||
small=env.t('npcText')
|
||||
hr
|
||||
@@ -37,7 +37,7 @@
|
||||
.achievement.achievement-heart
|
||||
h5
|
||||
=env.t('kickstartName1')
|
||||
${{profile.backer.tier}}
|
||||
| ${{profile.backer.tier}}
|
||||
=env.t('kickstartName2')
|
||||
small=env.t('kickstarterText')
|
||||
hr
|
||||
@@ -49,7 +49,7 @@
|
||||
=env.t('streakName')
|
||||
small
|
||||
=env.t('streakText1')
|
||||
{{profile.achievements.streak || 0 }}
|
||||
| {{profile.achievements.streak || 0 }}
|
||||
=env.t('streakText2')
|
||||
hr
|
||||
|
||||
@@ -72,11 +72,11 @@
|
||||
h5(ng-if='profile.achievements.rebirths == 1')=env.t('rebirthBegan')
|
||||
h5(ng-if='profile.achievements.rebirths > 1')
|
||||
=env.t('rebirthText1')
|
||||
{{profile.achievements.rebirths}}
|
||||
| {{profile.achievements.rebirths}}
|
||||
=env.t('rebirthText2')
|
||||
small
|
||||
=env.t('rebirthOrb')
|
||||
{{profile.achievements.rebirthLevel}}.
|
||||
| {{profile.achievements.rebirthLevel}}.
|
||||
hr
|
||||
|
||||
div(ng-if='profile.achievements.helpedHabit')
|
||||
@@ -124,6 +124,6 @@
|
||||
h5=env.t('annoyingFriends')
|
||||
small
|
||||
=env.t('annoyingFriends1')
|
||||
{{profile.achievements.snowball}}
|
||||
| {{profile.achievements.snowball}}
|
||||
=env.t('annoyingFriends2')
|
||||
hr
|
||||
|
||||
@@ -1,10 +1,3 @@
|
||||
h4.stats-equipment=env.t('equipment')
|
||||
table.table.table-striped
|
||||
tr(ng-repeat='(k,v) in user.items.gear.equipped', ng-init='piece=Content.gear.flat[v]', ng-show='piece')
|
||||
td
|
||||
strong {{piece.text}}:
|
||||
span(ng-repeat='stat in ["str","con","per","int"]', ng-show='piece[stat]') {{piece[stat]}} {{stat.toUpperCase()}}
|
||||
|
||||
h4=env.t('stats')
|
||||
table.table.table-striped
|
||||
tr
|
||||
@@ -24,6 +17,13 @@ table.table.table-striped
|
||||
strong=env.t('experience')
|
||||
| : {{profile.stats.exp | number:0}} / {{Shared.tnl(profile.stats.lvl)}}
|
||||
|
||||
h4.stats-equipment=env.t('equipment')
|
||||
table.table.table-striped
|
||||
tr(ng-repeat='(k,v) in user.items.gear.equipped', ng-init='piece=Content.gear.flat[v]', ng-show='piece')
|
||||
td
|
||||
strong {{piece.text}}:
|
||||
span(ng-repeat='stat in ["str","con","per","int"]', ng-show='piece[stat]') {{piece[stat]}} {{stat.toUpperCase()}}
|
||||
|
||||
h4=env.t('attributes')
|
||||
table.table.table-striped
|
||||
tr(ng-repeat='(k,v) in {str:"Strength",int:"Intelligence",con:"Constitution",per:"Perception"}')
|
||||
|
||||
Reference in New Issue
Block a user