2020-04-13 17:09:38 +01:00
{% extends 'templates/baseCharacter.html' %}
{% block general %}
2020-04-17 20:09:32 +01:00
< p > {{ object.type }}< span style = "float: right;" > Player: {{ object.player }}< / span > < / p >
< h1 > {{ object.name }}< / h1 >
{% if object.concept %}
< p > Concept< span style = "float: right;" > {{ object.concept }}< / span > < / p >
{% endif %}
{% if object.caste %}
< p > Caste< span style = "float: right;" > {{ object.caste }}< / span > < / p >
{% endif %}
{% if object.anima %}
< p > Anima< span style = "float: right;" > {{ object.anima }}< / span > < / p >
{% endif %}
{% if object.spiritShape %}
< p > Spirit Shape< span style = "float: right;" > {{ object.spiritShape }}< / span > < / p >
{% endif %}
{% if object.tell %}
< p > Tell< span style = "float: right;" > {{ object.tell }}< / span > < / p >
{% endif %}
{% if object.abilitySupernal %}
< p > Supernal Ability< span style = "float: right;" > {{ object.abilitySupernal }}< / span > < / p >
{% endif %}
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block abilities %}
2020-04-17 23:25:06 +01:00
< h2 > Abilities< / h2 >
{% for type, ownerships in object.abilitySet %}
< h3 > {{ type }}< / h3 >
{% for ownership in ownerships %}
< p class = "accordion hover-grey" >
  < i class = "far fa-square" > < / i > {{ ownership.target.name }}
< span style = "float: right" >
{% for dot in ownership.dots %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
< / span >
< / p >
< p class = "accordionPanel" >   < i class = "fas fa-level-up-alt fa-rotate-90" > < / i >
{% if ownership.target.description %}
{{ ownership.target.description }}
{% else %}
No description found.
{% endif %}
< / p >
{% endfor %}
{% endfor %}
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block attributes %}
2020-04-17 20:09:32 +01:00
< h2 > Attributes< / h2 >
< div class = "w3-cell-row" >
< div class = "w3-cell w3-third w3-mobile w3-row-padding" >
< p style = "margin:0" class = "w3-large w3-center fancy-small" >
< span > Physical< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Strength:< / span >
< span class = "w3-hide-large w3-hide-small" > STR:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsStrength %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Dexterity:< / span >
< span class = "w3-hide-large w3-hide-small" > DEX:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsDexterity %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Stamina:< / span >
< span class = "w3-hide-large w3-hide-small" > STA:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsStamina %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< / div >
< div class = "w3-cell w3-third w3-mobile w3-row-padding" >
< p style = "margin:0" class = "w3-large w3-center fancy-small" >
< span > Social< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Charisma:< / span >
< span class = "w3-hide-large w3-hide-small" > CHA:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsCharisma %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Manipulation:< / span >
< span class = "w3-hide-large w3-hide-small" > MAN:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsManipulation %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Appearance:< / span >
< span class = "w3-hide-large w3-hide-small" > APP:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsAppearance %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< / div >
< div class = "w3-cell w3-third w3-mobile w3-row-padding" >
< p style = "margin:0" class = "w3-large w3-center fancy-small" >
< span > Mental< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Perception:< / span >
< span class = "w3-hide-large w3-hide-small" > PER:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsPerception %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Intelligence:< / span >
< span class = "w3-hide-large w3-hide-small" > INT:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsIntelligence %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
< p style = "margin:0" class = "w3-display-container w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span class = "w3-hide-medium" > Wits:< / span >
< span class = "w3-hide-large w3-hide-small" > WIT:< / span >
< span class = "w3-medium w3-display-right" >
{% for dot in object.dotsWits %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
2020-04-13 17:09:38 +01:00
< / div >
< / div >
{% endblock %}
{% block specialities %}
2020-04-17 20:09:32 +01:00
< h2 > Specialities< / h2 >
{% if object.specialitySet %}
{% for speciality in object.specialitySet %}
2020-04-17 21:44:52 +01:00
< p class = "hover-grey accordion" >   < i class = "far fa-square" > < / i > {{ speciality }}< / p >
< p class = "accordionPanel" >   < i class = "fas fa-level-up-alt fa-rotate-90" > < / i >
2020-04-17 20:09:32 +01:00
{% if speciality.description %}
{{ speciality.description }}
{% else %}
No description found.
{% endif %}
< / p >
{% endfor %}
{% else %}
2020-04-17 21:44:52 +01:00
< p > No specialities found.< / p >
2020-04-17 20:09:32 +01:00
{% endif %}
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block willpower %}
2020-04-17 20:09:32 +01:00
< h2 > Willpower< / h2 >
< p style = "margin:10px;" class = "w3-large w3-center" >
< span >
{% for dot in object.dotsTriWillpower %}
{% if dot == 2 %}
< i class = "fas fa-circle" > < / i >
{% elif dot == 1 %}
< i class = "far fa-dot-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
< / span >
< / p >
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block essence %}
2020-04-17 20:09:32 +01:00
< h2 > Essence< / h2 >
< p style = "margin:10px;" class = "w3-xlarge w3-center" >
< span >
{% for dot in object.dotsEssence %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
< / span >
< / p >
{% if object.type is not "Mortal" %}
< div class = "w3-container" style = "text-align:center;" >
< div style = "max-width:200px; min-width:200px; display:inline-block; text-align:left;" >
< p style = "margin:0" >
< span > Personal:< / span >
< span class = "w3-right" > {{ object.motesPersonal }}/{{ object.motesPersonalMax }}< / span >
< / p >
< p style = "margin:0" >
< span > Peripheral:< / span >
< span class = "w3-right" > {{ object.motesPeripheral }}/{{ object.motesPeripheralMax }}< / span >
< / p >
< p style = "margin:0" >
< span > Personal:< / span >
< span class = "w3-right" > {{ object.motesCommitted }}< / span >
< / p >
2020-04-13 17:09:38 +01:00
< / div >
< / div >
2020-04-17 20:09:32 +01:00
{% endif %}
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block merits %}
2020-04-17 20:09:32 +01:00
< h2 > Merits< / h2 >
{% if object.meritSet %}
{% for merit in object.meritSet %}
< p style = "margin:0" class = "w3-row-padding custom-hover-grey custom-hover-text-orange w3-display-container" >
< span > {{ merit }}< / span >
< span class = "w3-display-right" >
{% for dot in merit.dotsDisplay %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
 
< / span >
< / p >
{% endfor %}
{% else %}
< p > No merits found.< / p >
{% endif %}
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block limit %}
2020-04-17 20:09:32 +01:00
< h2 > Limit< / h2 >
< p style = "margin:10px;" class = "w3-large w3-center" >
< span >
{% for dot in object.dotsLimit %}
{% if dot %}
< i class = "fas fa-circle" > < / i >
{% else %}
< i class = "far fa-circle" > < / i >
{% endif %}
{% endfor %}
< / span >
< / p >
< p class = "w3-center" >
{{ object.limitTrigger }}
< / p >
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block experience %}
2020-04-17 20:09:32 +01:00
< h2 > Experience< / h2 >
< div class = "w3-cell-row" >
< div class = "w3-cell w3-mobile" >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Experience< / b > < / span >
< / p >
< div class = "w3-cell-row" >
< div class = "w3-cell w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span > Current:< / span >
< span class = "w3-right" > {{ object.experience }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span > Total:< / span >
< span class = "w3-right" > {{ object.experienceTotal }}< / span >
2020-04-13 17:09:38 +01:00
< / div >
< / div >
2020-04-17 20:09:32 +01:00
< / div >
{% if object.type is not "Mortal" %}
< div class = "w3-cell w3-row-padding w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile" >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Exalted Experience< / b > < / span >
< / p >
< div class = "w3-cell-row" >
< div class = "w3-cell w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span > Current:< / span >
< span class = "w3-right" > {{ object.experienceExalted }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-row-padding custom-hover-grey custom-hover-text-orange" >
< span > Total:< / span >
< span class = "w3-right" > {{ object.experienceExaltedTotal }}< / span >
2020-04-13 17:09:38 +01:00
< / div >
< / div >
< / div >
2020-04-17 20:09:32 +01:00
{% endif %}
2020-04-13 17:09:38 +01:00
< / div >
{% endblock %}
{% block weapons_armor %}
2020-04-17 20:09:32 +01:00
< h2 > Weapons & Armor< / h2 >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Weapons & Armor< / b > < / span >
< / p >
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
< th > < b > Weapon< / b > < / th >
< th > ACC< / th >
< th > DAM< / th >
< th > DEF< / th >
< th > OVW< / th >
< th > ATT< / th >
< / tr >
{% if object.itemWeaponSet %}
{% for weapon in object.itemWeaponSet %}
< tr class = "trAccordion custom-hover-grey custom-hover-text-orange" >
< td style = "white-space: nowrap;" > {{ weapon.name }}< / td >
{% if weapon.rangeClose %}
< td > {{ weapon.rangeClose }}/{{ weapon.rangeShort }}/{{ weapon.rangeMedium }}/{{ weapon.rangeLong }}/{{ weapon.rangeExtreme }}< / td >
{% else %}
< td > {{ weapon.accuracy }}< / td >
{% endif %}
< td > {{ weapon.damage }}< / td >
< td > {{ weapon.defense }}< / td >
< td > {{ weapon.overwhelming }}< / td >
< td > {{ weapon.attunement }}< / td >
< / tr >
< tr class " accordionRow " style = "display:none;" > < td class = "w3-border-bottom custom-border-grey" colspan = "6" >
< i class = "fas fa-level-up-alt fa-rotate-90" > < / i > {{ weapon.description }} Describe a really long sentence that will definitely overflow the bounds of the single cell
< / td > < / tr >
{% endfor %}
{% else %}
< tr > < td > No weapons found.< / td > < / tr >
{% endif %}
< / table >
< br >
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
< th > < b > Armor< / b > < / th >
< th > SOAK< / th >
< th > HRD< / th >
< th > MP< / th >
< th > ATT< / th >
< / tr >
{% if object.itemArmorSet %}
{% for armor in object.itemArmorSet %}
< tr class = "custom-hover-grey custom-hover-text-orange" >
< td > {{ armor.name }}< / td >
< td > {{ armor.soak }}< / td >
< td > {{ armor.hardness }}< / td >
< td > {{ armor.mobilityPenalty }}< / td >
< td > {{ armor.attunement }}< / td >
< / tr >
{% endfor %}
{% else %}
< tr > < td > No armor found.< / td > < / tr >
{% endif %}
< / table >
2020-04-13 17:09:38 +01:00
{% endblock %}
{% block health_defense %}
2020-04-17 20:09:32 +01:00
< h2 > Health & Defense< / h2 >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Health & Defense< / b > < / span >
< / p >
< div class = "w3-cell-row" >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Soak (N/A/T):< / span >
< span class = "w3-right" > {{ object.soakNatural }}/{{ object.soakArmored }}/{{ object.soakTotal }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Hardness:< / span >
< span class = "w3-right" > {{ object.hardness }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Guile:< / span >
< span class = "w3-right" > {{ object.guile }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Resolve:< / span >
< span class = "w3-right" > {{ object.resolve }}< / span >
2020-04-15 20:35:45 +01:00
< / div >
2020-04-17 20:09:32 +01:00
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Rush:< / span >
< span class = "w3-right" > {{ object.rush }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Evasion:< / span >
< span class = "w3-right" > {{ object.evasion }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Disengage:< / span >
< span class = "w3-right" > {{ object.disengage }}< / span >
< / div >
< div class = "w3-cell w3-row-padding vl w3-hide-small" >
< / div >
< div class = "w3-cell w3-mobile custom-hover-grey custom-hover-text-orange w3-row-padding" >
< span > Join Battle:< / span >
< span class = "w3-right" > {{ object.joinBattle }}< / span >
< / div >
< / div >
< div class = "w3-display-container w3-margin-top" >
< div class = "w3-display-topmiddle" >
< div class = "w3-row" >
{% for level,dot in object.healthDots %}
< div class = "w3-cell" >
< p style = "margin:0" >
{% if dot %}
2020-04-16 00:07:58 +01:00
 
2020-04-17 20:09:32 +01:00
< i class = "fas fa-circle" > < / i >
2020-04-16 00:07:58 +01:00
 
2020-04-17 20:09:32 +01:00
{% else %}
 
< i class = "far fa-circle" > < / i >
 
{% endif %}
< / p >
< p style = "margin:0; text-align:center;" >
 
{{ level }}
 
< / p >
< / div >
{% endfor %}
2020-04-16 00:07:58 +01:00
< / div >
< / div >
2020-04-17 20:09:32 +01:00
< br >
< br >
2020-04-13 17:09:38 +01:00
< / div >
{% endblock %}
{% block intimacies %}
2020-04-17 20:09:32 +01:00
< h2 > Intimacies< / h2 >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Intimacies< / b > < / span >
< / p >
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
< th > Intimacy< / th >
< th > Target< / th >
< th > Intensity< / th >
< / tr >
{% if object.intimacy_set.all %}
{% for tie in object.intimacy_set.all %}
< tr class = "custom-hover-grey custom-hover-text-orange" >
< td > {{ tie.description }}< / td >
< td > {{ tie.target }}< / td >
< td > {{ tie.intensity }}< / td >
< / tr >
{% endfor %}
{% else %}
< tr > < td > No intimacies found.< / td > < / tr >
{% endif %}
< / table >
{% endblock %}
{% block charms %}
< h2 > Charms< / h2 >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Charms< / b > < / span >
< / p >
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
< th > Charm< / th >
< th > Type< / th >
< th > Duration< / th >
< th > Keywords< / th >
< th > Description< / th >
< / tr >
{% if object.charmSet %}
{% for charm in object.charmSet %}
< tr class = "custom-hover-grey custom-hover-text-orange" >
< td > {{ charm.name }}< / td >
< td > {{ charm.charmType }}< / td >
< td > {{ charm.duration }}< / td >
< td > {{ charm.keywords }}< / td >
< td > {{ charm.description }}< / td >
< / tr >
{% endfor %}
{% else %}
< tr > < td > No charms found.< / td > < tr >
{% endif %}
< / table >
{% if object.lunarShapeSet %}
< br >
2020-04-16 00:07:58 +01:00
< table class = "w3-table" style = "line-height:11px" >
2020-04-15 20:35:45 +01:00
< tr class = "w3-border-bottom custom-border-grey" >
2020-04-17 20:09:32 +01:00
< th > Shape< / th >
< th > Type< / th >
< th > Size< / th >
< th > Description< / th >
2020-04-15 20:35:45 +01:00
< / tr >
2020-04-17 20:09:32 +01:00
{% for charm in object.lunarShapeSet %}
2020-04-15 20:35:45 +01:00
< tr class = "custom-hover-grey custom-hover-text-orange" >
2020-04-17 20:09:32 +01:00
< td > {{ charm.name }}< / td >
< td > {{ charm.shapeType }}< / td >
< td > {{ charm.size }}< / td >
< td > {{ charm.description }}< / td >
2020-04-15 20:35:45 +01:00
< / tr >
{% endfor %}
< / table >
2020-04-17 20:09:32 +01:00
{% endif %}
{% if object.evocationSet %}
< br >
2020-04-16 00:07:58 +01:00
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
2020-04-17 20:09:32 +01:00
< th > Evocation< / th >
2020-04-16 00:07:58 +01:00
< th > Type< / th >
< th > Duration< / th >
< th > Keywords< / th >
< th > Description< / th >
< / tr >
2020-04-17 20:09:32 +01:00
{% for charm in object.evocationSet %}
2020-04-16 00:07:58 +01:00
< tr class = "custom-hover-grey custom-hover-text-orange" >
< td > {{ charm.name }}< / td >
< td > {{ charm.charmType }}< / td >
< td > {{ charm.duration }}< / td >
< td > {{ charm.keywords }}< / td >
< td > {{ charm.description }}< / td >
< / tr >
{% endfor %}
< / table >
2020-04-17 20:09:32 +01:00
{% endif %}
{% if object.martialArtSet %}
< br >
2020-04-16 00:07:58 +01:00
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
2020-04-17 20:09:32 +01:00
< th > Charm< / th >
< th > Type< / th >
< th > Duration< / th >
< th > Keywords< / th >
2020-04-16 00:07:58 +01:00
< th > Description< / th >
< / tr >
2020-04-17 20:09:32 +01:00
{% for charm in object.martialArtSet %}
2020-04-16 00:07:58 +01:00
< tr class = "custom-hover-grey custom-hover-text-orange" >
2020-04-17 20:09:32 +01:00
< td > {{ charm.name }}< / td >
< td > {{ charm.charmType }}< / td >
< td > {{ charm.duration }}< / td >
< td > {{ charm.keywords }}< / td >
< td > {{ charm.description }}< / td >
2020-04-16 00:07:58 +01:00
< / tr >
{% endfor %}
< / table >
2020-04-17 20:09:32 +01:00
{% endif %}
{% endblock %}
{% block items %}
< h2 > Items< / h2 >
< p style = "margin:3px" class = "fancy w3-center w3-xlarge" >
< span class = "w3-center" > < b > Inventory< / b > < / span >
< / p >
< table class = "w3-table" style = "line-height:11px" >
< tr class = "w3-border-bottom custom-border-grey" >
< th > Item< / th >
< th > Description< / th >
< / tr >
{% if object.itemSet %}
{% for item in object.itemSet %}
< tr class = "custom-hover-grey custom-hover-text-orange" >
< td > {{ item.name }}< / td >
< td > {{ item.description }}< / td >
< / tr >
{% endfor %}
{% else %}
< tr > < td > No items found.< / td > < tr >
{% endif %}
< / table >
2020-04-13 17:09:38 +01:00
{% endblock %}