2014-09-21 12:53:58 -04:00
|
|
|
#equipped
|
2014-09-21 02:06:28 -04:00
|
|
|
.item-slot-row
|
|
|
|
for slot in ['left-ring', 'neck', 'eyes', 'head', 'wrists', 'right-ring']
|
|
|
|
.item-slot(data-slot=slot)
|
|
|
|
.placeholder
|
|
|
|
.item-container
|
|
|
|
if equipment[slot]
|
2014-09-21 14:24:37 -04:00
|
|
|
.replace-me(data-item-id=equipment[slot].get('original'))
|
2014-09-21 02:06:28 -04:00
|
|
|
|
|
|
|
.item-slot-column.pull-left
|
2014-09-21 23:19:27 -04:00
|
|
|
for slot in ['minion', 'torso', 'gloves', 'left-hand']
|
2014-09-21 02:06:28 -04:00
|
|
|
.item-slot(data-slot=slot)
|
|
|
|
.placeholder
|
|
|
|
.item-container
|
|
|
|
if equipment[slot]
|
2014-09-21 14:24:37 -04:00
|
|
|
.replace-me(data-item-id=equipment[slot].get('original'))
|
2014-09-21 02:06:28 -04:00
|
|
|
|
|
|
|
.hero-container
|
|
|
|
canvas.equipped-hero-canvas
|
2014-09-21 12:53:58 -04:00
|
|
|
#selected-items
|
|
|
|
#selected-equipped-item.well
|
2014-09-24 23:15:17 -04:00
|
|
|
h3(data-i18n="inventory.equipped") Equipped
|
2014-09-21 12:53:58 -04:00
|
|
|
.item-view-stub
|
|
|
|
#selected-available-item.well
|
2014-09-24 23:15:17 -04:00
|
|
|
h3(data-i18n="inventory.equipped") Available
|
2014-09-21 12:53:58 -04:00
|
|
|
.item-view-stub
|
2014-09-21 02:06:28 -04:00
|
|
|
|
|
|
|
.item-slot-column.pull-right
|
2014-09-21 23:19:27 -04:00
|
|
|
for slot in ['pet', 'waist', 'feet', 'right-hand']
|
2014-09-21 02:06:28 -04:00
|
|
|
.item-slot(data-slot=slot)
|
|
|
|
.placeholder
|
|
|
|
.item-container
|
|
|
|
if equipment[slot]
|
2014-09-21 14:24:37 -04:00
|
|
|
.replace-me(data-item-id=equipment[slot].get('original'))
|
2014-09-21 02:06:28 -04:00
|
|
|
|
|
|
|
hr.slot-row-separator
|
|
|
|
|
|
|
|
.item-slot-row.row-4
|
|
|
|
for slot in ['programming-book', 'spellbook', 'misc-0', 'misc-1']
|
|
|
|
.item-slot(data-slot=slot)
|
|
|
|
.placeholder
|
|
|
|
.item-container
|
|
|
|
if equipment[slot]
|
2014-09-21 14:24:37 -04:00
|
|
|
.replace-me(data-item-id=equipment[slot].get('original'))
|
2014-09-21 12:53:58 -04:00
|
|
|
|
|
|
|
#available-equipment
|
2014-09-24 23:15:17 -04:00
|
|
|
h4#unlocked-description
|
2014-09-24 12:38:45 -04:00
|
|
|
ul.list-group
|
2014-09-24 23:15:17 -04:00
|
|
|
for item in unlockedItems
|
|
|
|
li.list-group-item(class=item.classes, data-item-id=item.get('original'))
|
|
|
|
h4#locked-description
|
|
|
|
ul.list-group
|
|
|
|
for item in lockedItems
|
2014-09-24 12:38:45 -04:00
|
|
|
li.list-group-item(class=item.classes, data-item-id=item.get('original'))
|
2014-08-13 20:21:37 -04:00
|
|
|
|