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

33 lines
1.0 KiB
HTML
Raw Normal View History

2020-06-22 10:18:03 +02:00
<form class="skill-roll-dialog">
<h2 class="compdialog" id="compdialogTitle"></h2>
<div class="form-group">
<label for="categorie">Difficulté libre</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>
<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>
2020-06-22 10:18:03 +02:00
{{/each}}
{{/select}}
</select>
2020-12-18 23:57:28 +01:00
<label class="diffMoral" for="categorie">Moral: {{#if (gt moral 0)}}+{{/if}}{{moral}}</label>
2020-06-22 10:18:03 +02:00
</div>
{{>"systems/foundryvtt-reve-de-dragon/templates/dialog-roll-surenc.html"}}
<div id="tableAjustements">
2020-06-22 10:18:03 +02:00
</div>
<div id="tableResolution">
2020-12-15 23:54:09 +01:00
</div>
<div id="tableProbaReussite">
2020-06-22 10:18:03 +02:00
</div>
</form>
<script>
</script>