First iteration over items
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
<section>
|
||||
<div class="header">
|
||||
<img
|
||||
class="item-img"
|
||||
src="{{item.img}}"
|
||||
data-edit="img"
|
||||
data-action="editImage"
|
||||
data-tooltip="{{item.name}}"
|
||||
/>
|
||||
{{formInput fields.name value=source.name}}
|
||||
</div>
|
||||
|
||||
<div class="flexrow">
|
||||
<div class="align-top">
|
||||
|
||||
{{! Basic Information }}
|
||||
{{formField systemFields.senses value=system.senses}}
|
||||
|
||||
{{formField systemFields.size value=system.size localize=true}}
|
||||
|
||||
{{formField
|
||||
systemFields.ageCategory
|
||||
value=system.ageCategory
|
||||
localize=true
|
||||
}}
|
||||
|
||||
{{formField systemFields.language value=system.language}}
|
||||
|
||||
</div>
|
||||
<div class="align-top">
|
||||
|
||||
{{! Racial Passive }}
|
||||
{{formField systemFields.racialPassive value=system.racialPassive}}
|
||||
|
||||
{{! Sub-race }}
|
||||
{{formField systemFields.subrace value=system.subrace}}
|
||||
|
||||
{{formField systemFields.subraceAbility value=system.subraceAbility}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{! Racial Passive Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.racialPassive"}}</legend>
|
||||
{{formInput
|
||||
systemFields.racialPassiveDescription
|
||||
enriched=enrichedRacialPassiveDescription
|
||||
value=system.racialPassiveDescription
|
||||
name="system.racialPassiveDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Sub-race Ability Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.subraceAbility"}}</legend>
|
||||
{{formInput
|
||||
systemFields.subraceAbilityDescription
|
||||
enriched=enrichedSubraceAbilityDescription
|
||||
value=system.subraceAbilityDescription
|
||||
name="system.subraceAbilityDescription"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Notes }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.notes"}}</legend>
|
||||
{{formInput
|
||||
systemFields.notes
|
||||
enriched=enrichedNotes
|
||||
value=system.notes
|
||||
name="system.notes"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
{{! Description }}
|
||||
<fieldset>
|
||||
<legend>{{localize "PRISMRPG.Label.description"}}</legend>
|
||||
{{formInput
|
||||
systemFields.description
|
||||
enriched=enrichedDescription
|
||||
value=system.description
|
||||
name="system.description"
|
||||
toggled=true
|
||||
}}
|
||||
</fieldset>
|
||||
|
||||
</section>
|
||||
Reference in New Issue
Block a user