44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.6 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">Allégeance : </label>
 | 
						|
        <select class="status-small-label color-class-common" type="text" name="system.allegeance" value="{{data.allegeance}}" data-dtype="string" >
 | 
						|
          {{#select data.allegeance}}
 | 
						|
          <option value="tous">Tous</option>
 | 
						|
          <option value="chaos">Chaos</option>
 | 
						|
          <option value="loi">Loi</option>
 | 
						|
          <option value="betes">Seigneurs des Bêtes</option>
 | 
						|
          <option value="elementaires">Seigneurs Elementaires</option>
 | 
						|
          {{/select}}
 | 
						|
        </select> 
 | 
						|
      </span>
 | 
						|
      <span class="flexrow">
 | 
						|
        <label class="generic-label">Prérequis : </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>
 |