#6 : Skill experience management
This commit is contained in:
@ -12,8 +12,20 @@
|
||||
<div class="tab" data-group="primary">
|
||||
<ul>
|
||||
<li class="flexrow"><label class="generic-label">Value</label><input type="text" name="data.value" value="{{data.value}}" data-dtype="Number"/></li>
|
||||
<li class="flexrow"><label class="generic-label">XP</label><input type="text" name="data.xp" value="{{data.xp}}" data-dtype="Number"/></li>
|
||||
</ul>
|
||||
<ul class="stat-list alternate-list">
|
||||
<li class="stat flexrow list-item" data-attribute="{{key}}">
|
||||
<span class="generic-label flexrow tooltip tooltip-nobottom" name="">Experiences list : </span>
|
||||
</li>
|
||||
{{#each skillExperienceList as |skillXP key|}}
|
||||
<li class="stat flexrow list-item item" data-item-id="{{skillXP._id}}">
|
||||
<span class="generic-label flexrow tooltip tooltip-nobottom" name="">{{skillXP.name}}</span>
|
||||
<div class="item-controls">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<label class="generic-label">Description</label>
|
||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user