forked from public/foundryvtt-reve-de-dragon
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <form class="{{cssClass}}" autocomplete="off">
 | |
|   <header class="sheet-header">
 | |
|       <div class="header-fields">
 | |
|           <h1 class="charname">Astrologie</h1>
 | |
|       </div>
 | |
|   </header>
 | |
| 
 | |
|   <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>
 | |
|   <label for="categorie">  Jours</label>
 | |
|   <select name="joursAstrologie" id="joursAstrologie" data-dtype="number">
 | |
|       {{#select joursSuivants}}
 | |
|       {{#each dates  as |date key|}}
 | |
|       <option value={{date.index}}>{{date.label}}</option>
 | |
|       {{/each}}
 | |
|       {{/select}}
 | |
|   </select>
 | |
|   <label for="categorie">  <a id='jet-astrologie'>Faire un jet d'Astrologie</a></label>
 | |
| 
 | |
|   {{!-- Sheet Body --}}
 | |
|   <section class="sheet-body">
 | |
|     <div class="form-group">
 | |
|       <label for="astralList">Nombres Astraux</label>
 | |
|       <table border=1>
 | |
|         <tr>
 | |
|           {{#each nombres as |nombreData key|}}
 | |
|           <td align="center">{{nombreData.data.jourlabel}}</td>
 | |
|           {{/each}}
 | |
|         </tr>
 | |
|         <tr>
 | |
|           {{#each nombres as |nombreData key|}}
 | |
|           <td align="center">{{nombreData.data.value}}</td>
 | |
|           {{/each}}
 | |
|         </tr>
 | |
|       </table>        
 | |
|     </div>
 | |
|   </section>
 | |
|   
 | |
| </form>
 |