bol/templates/dialogs/career-roll-part.hbs

15 lines
707 B
Handlebars
Raw Normal View History

2022-03-26 20:53:08 +01:00
{{#if careers}}
<div class="flexrow roll-box">
2022-09-25 21:13:15 +02:00
<div class="flex1 center bg-darkred" data-tooltip-direction="LEFT" data-tooltip="Click-gauche pour selectionner, CTRL+Click gauche pour déselectionner">
2022-01-16 21:29:12 +01:00
<label for="mod">{{localize 'BOL.ui.careers'}}</label>
</div>
<div class="flex1 center cell">
<select class="flex1" name="career" id="career" data-type="String" multiple>
2022-03-26 20:53:08 +01:00
{{#each careers as | career id|}}
2022-07-01 15:48:54 +02:00
<option value="{{career.system.rank}}">{{career.name}} ({{numberFormat career.system.rank decimals=0 sign=true}})</option>
2022-01-16 21:29:12 +01:00
{{/each}}
</select>
</div>
</div>
{{/if}}