b1eea14ec4
- Closes #49 - Fixes "eq" handlebars helper - Version incremented - Minor fixes
47 lines
No EOL
1.9 KiB
HTML
47 lines
No EOL
1.9 KiB
HTML
<div class="item cohort-block-wrapper" data-item-id="{{item._id}}">
|
|
|
|
<div class="cohort-block">
|
|
<div class="label-stripe">
|
|
<div class="item-sheet-open">{{#if (eq item.data.cohort.[0] "Gang")}}Gang of {{#each ../item.data.gang_type as |gang_type key|}}{{gang_type}} {{/each}}{{/if}}{{#if (eq item.data.cohort.[0] "Expert")}}{{../item.data.cohort.[0]}} {{../item.data.expert_type}}{{/if}} (click to edit)</div>
|
|
<div>Q:{{item.data.quality}} S:{{item.data.scale}}</div>
|
|
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
|
|
</div>
|
|
<div class="cohort-body">
|
|
|
|
<div class="cohort-block-harm flex-horizontal">
|
|
{{#each item.data.harm_list as |harm harm_key|}}
|
|
{{#multiboxes ../item.data.harm}}
|
|
<input id="harm-{{harm_key}}-{{../item._id}}" type="radio" name="harm.{{../item._id}}" data-item="{{../item._id}}" value="{{harm_key}}">
|
|
<label for="harm-{{harm_key}}-{{../item._id}}">{{harm.label}}</label>
|
|
{{/multiboxes}}
|
|
{{/each}}
|
|
</div>
|
|
|
|
{{#if (eq item.data.cohort.[0] "Gang")}}
|
|
{{#each ../item.data.gang_type as |gang_type key|}}
|
|
<div>
|
|
{{#with (lookup ../../item.data.gang_type_list gang_type)}}{{description}} {{/with}}
|
|
</div>
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
<div class="flex-vertical">
|
|
<div class="flex-vertical">
|
|
{{#each item.data.edges as |edge key|}}
|
|
{{#with (lookup ../item.data.edges_list edge)}}
|
|
<div class="description">{{description}} <b>({{label}})</b></div>
|
|
{{/with}}
|
|
{{/each}}
|
|
{{#each item.data.flaws as |flaw key|}}
|
|
{{#with (lookup ../item.data.flaws_list flaw)}}
|
|
<div class="description">{{description}} <b>({{label}})</b></div>
|
|
{{/with}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="description">{{item.data.description}}</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div> |