40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <form class="{{cssClass}}" autocomplete="off">
 | |
|   {{> systems/fvtt-les-heritiers/templates/partial-item-header.html}}
 | |
| 
 | |
|   {{> systems/fvtt-les-heritiers/templates/partial-item-nav.html}}
 | |
| 
 | |
|   {{!-- Sheet Body --}}
 | |
|   <section class="sheet-body">
 | |
| 
 | |
|     {{> systems/fvtt-les-heritiers/templates/partial-item-description.html}}
 | |
| 
 | |
|     <div class="tab details" data-group="primary" data-tab="details">
 | |
| 
 | |
|       <ul class="item-list alternate-list">
 | |
| 
 | |
|       <li class="flexrow item">
 | |
|         <label class="generic-label item-field-label-long">Lieu :  </label>
 | |
|         <input type="text" class="item-field-label-long" name="system.lieu"
 | |
|           value="{{system.lieu}}" data-dtype="String" />
 | |
|       </li>
 | |
|       <li class="flexrow item">
 | |
|         <label class="generic-label item-field-label-long">Prix :  </label>
 | |
|         <input type="text" class="item-field-label-short" name="system.prix"
 | |
|           value="{{system.prix}}" data-dtype="Number" />
 | |
|       </li>
 | |
|       <li class="flexrow item">
 | |
|         <label class="generic-label item-field-label-long">Quantité :  </label>
 | |
|         <input type="text" class="item-field-label-short" name="system.quantite"
 | |
|           value="{{system.quantite}}" data-dtype="Number" />
 | |
|       </li>
 | |
|       <li class="flexrow item">
 | |
|         <label class="generic-label item-field-label-long">Equipé ? :  </label>
 | |
|         <input type="checkbox" class="padd-right status-small-label color-class-common item-field-label-short"
 | |
|           name="system.equipped" {{checked system.equipped}}/>
 | |
|       </li>
 | |
| 
 | |
| 
 | |
|     </div>
 | |
| 
 | |
|   </section>
 | |
| </form> |