42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <form class="skill-roll-dialog">
 | |
| <h2 class="compdialog" id="compdialogTitle"></h2>
 | |
| <div class="form-group">
 | |
|   <label for="categorie">Caractéristique </label>
 | |
|   <select name="carac" id="carac" data-dtype="String">
 | |
|       {{#select carac}}
 | |
|       {{#each carac as |caracitem key|}}
 | |
|       <option value={{key}}>{{caracitem.label}}</option>
 | |
|       {{/each}}
 | |
|       {{/select}}
 | |
|   </select>
 | |
| </div>
 | |
| <div class="form-group">
 | |
|   <label for="categorie">Bonus/Malus</label>
 | |
|   <select name="bonusmalus" id="bonusmalus" data-dtype="number">
 | |
|       {{#select bonusmalus}}
 | |
|       {{#each bonusmalusTable as |bmvalue key|}}
 | |
|       <option value={{bmvalue}}>{{numberFormat bmvalue decimals=0 sign=true}}</option>
 | |
|       {{/each}}
 | |
|       {{/select}}
 | |
|   </select>
 | |
| </div>
 | |
| {{#if arme}}
 | |
| <div>
 | |
|   <label>Arme : {{arme.name}}</label>
 | |
|   <label>Degats : {{arme.data.dommages}}</label>
 | |
| </div>
 | |
| {{/if}}
 | |
| <div class="form-group">
 | |
|   <label for="categorie">Etat général</label><label>{{numberFormat etat decimals=0 sign=true}}</label>
 | |
| </div>
 | |
| <div class="form-group">
 | |
|   <label>Ajustement final : </label><label id="roll-param">10 / 0</label>
 | |
| </div>
 | |
| <div id="resolutionTable">
 | |
|   
 | |
| </div>
 | |
| </form>
 | |
| 
 | |
| <script>
 | |
| </script>
 |