38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <form class="{{cssClass}}" autocomplete="off">
 | |
|     <header class="sheet-header">
 | |
|         <img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}"/>
 | |
|         <div class="header-fields">
 | |
|             <h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
 | |
|         </div>
 | |
|     </header>
 | |
| 
 | |
|     {{!-- Sheet Body --}}
 | |
|     <section class="sheet-body">
 | |
|     
 | |
|     <div class="flexcol">
 | |
|       <span class="flexrow">
 | |
|         <label class="generic-label">{{localize "MNBL.allegiance"}} : </label>
 | |
|         <select class="status-small-label color-class-common" type="text" name="system.allegeance" value="{{data.allegeance}}" data-dtype="string" >
 | |
|           {{selectOptions config.allegeanceOptions selected=data.allegeance}}
 | |
|         </select> 
 | |
|       </span>
 | |
|       <span class="flexrow">
 | |
|         <label class="generic-label">{{localize "MNBL.prerequisites"}} : </label>
 | |
|         <input type="text" class="padd-right status-small-label color-class-common" name="system.prerequis" value="{{data.prerequis}}" data-dtype="String" />
 | |
|       </span>
 | |
| 
 | |
|       <span>
 | |
|         <h3>Sacrifices</h3>
 | |
|       </span>
 | |
|     
 | |
|       <div class="small-editor item-text-long-line">
 | |
|         {{editor sacrifice target="system.sacrifice" button=true owner=owner editable=editable}}
 | |
|       </div>      
 | |
|     
 | |
|       {{> systems/fvtt-mournblade/templates/partial-item-description.html}}
 | |
| 
 | |
|     </div>
 | |
|       
 | |
|     </section>
 | |
| </form>
 |