foundryvtt-reve-de-dragon/templates/dialog-roll-sort.html

76 lines
2.4 KiB
HTML
Raw Normal View History

2020-07-23 22:09:40 +02:00
<form class="dialog-roll-sort">
<h2 class="compdialog" id="sort-dialog"></h2>
2020-11-20 16:45:20 +01:00
2020-07-23 22:09:40 +02:00
<div class="form-group">
2020-12-06 20:11:30 +01:00
<label for="categorie">Rêve : {{vieValue}}</label>
2020-11-20 16:45:20 +01:00
<label for="categorie">TMR : {{coord}} - {{coordLabel}}</label>
2020-11-20 13:46:43 +01:00
</div>
2020-07-23 22:09:40 +02:00
<div class="form-group">
<label for="categorie">Draconic </label>
<select name="draconic" id="draconic" data-dtype="String">
{{#select draconic}}
{{#each draconicList as |draconic key|}}
<option value={{key}}>{{draconic.name}} : {{draconic.data.niveau}}</option>
{{/each}}
{{/select}}
</select>
<label for="categorie">conditions</label>
<select name="diffConditions" id="diffConditions" data-dtype="number">
{{#select diffConditions}}
{{#each ajustementsConditions as |key|}}
<option value={{key}}>{{numberFormat key decimals=0 sign=true}}</option>
{{/each}}
{{/select}}
</select>
2020-07-23 22:09:40 +02:00
</div>
<div class="form-group">
<label for="categorie">Sort </label>
<select name="sort" id="sort" data-dtype="String">
{{#select sort}}
{{#each sortList as |sort key|}}
<option value={{key}}>{{this.name}} - {{#if this.data.caseTMRspeciale}} {{this.data.caseTMRspeciale}} {{else}}{{this.data.caseTMR}}{{/if}} / R{{this.data.difficulte}} r {{sort.data.ptreve}}</option>
2020-07-23 22:09:40 +02:00
{{/each}}
{{/select}}
</select>
</div>
<div class="form-group" id="div-sort-difficulte">
<label for="categorie">Difficulté </label>
<select name="diffLibre" id="diffLibre" data-dtype="number">
{{#select diffLibre}}
{{#each difficultesLibres as |key|}}
<option value={{key}}>{{numberFormat key decimals=0 sign=true}}</option>
{{/each}}
{{/select}}
</select>
</div>
<div class="form-group" id="div-sort-ptreve">
<label for="categorie">Couts en Points de Rêve </label>
<select name="ptreve-variable" id="ptreve-variable" data-dtype="number">
{{#select ptreve-variable}}
{{#each coutreve as |cout key|}}
<option value={{cout}}>{{cout}}</option>
{{/each}}
{{/select}}
</select>
</div>
<div class="form-group etat-general">
2020-07-23 22:09:40 +02:00
<label for="categorie">Etat général</label><label>{{numberFormat etat decimals=0 sign=true}}</label>
</div>
<div class="form-group">
2020-12-02 14:00:54 +01:00
<label>Ajustement final : </label><label id="roll-param">10 / 0</label>&nbsp;&nbsp;&nbsp;<label name="addon-message" id="addon-message"></label>
2020-07-23 22:09:40 +02:00
</div>
<div id="resolutionTable">
2020-12-15 23:54:09 +01:00
</div>
<div id="resolutionValeurs">
2020-07-23 22:09:40 +02:00
</div>
</form>
<script>
</script>