72 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.9 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>
 | 
						|
 | 
						|
  {{> systems/fvtt-hawkmoon-cyd/templates/partial-item-nav.html}}
 | 
						|
 | 
						|
  {{!-- Sheet Body --}}
 | 
						|
  <section class="sheet-body">
 | 
						|
 | 
						|
    {{> systems/fvtt-hawkmoon-cyd/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-medium">Type </label>
 | 
						|
          <select class="status-small-label color-class-common item-field-label-long" type="text"
 | 
						|
            name="system.talenttype" value="{{system.talenttype}}" data-dtype="String">
 | 
						|
            {{#select system.talenttype}}
 | 
						|
            <option value="personnage">Personnage</option>
 | 
						|
            <option value="cellule">Cellule</option>
 | 
						|
            {{/select}}
 | 
						|
          </select>
 | 
						|
        </li>
 | 
						|
 | 
						|
        <li class="flexrow item">
 | 
						|
          <label class="generic-label item-field-label-medium">Utilisation </label>
 | 
						|
          <select class="status-small-label color-class-common item-field-label-long" type="text"
 | 
						|
            name="system.utilisation" value="{{system.utilisation}}" data-dtype="String">
 | 
						|
            {{#select system.utilisation}}
 | 
						|
            <option value="permanent">Permanent</option>
 | 
						|
            <option value="sceance">Une fois par scéance</option>
 | 
						|
            <option value="scenario">Une fois par scénario</option>
 | 
						|
            <option value="jour">Une fois par jour</option>
 | 
						|
            <option value="unique">Unique</option>
 | 
						|
            {{/select}}
 | 
						|
          </select>
 | 
						|
        </li>
 | 
						|
 | 
						|
        <li class="flexrow item">
 | 
						|
          <label class="generic-label item-field-label-long">Pré-requis </label>
 | 
						|
        </li>
 | 
						|
        <li class="flexrow item">
 | 
						|
            <textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
 | 
						|
            name="system.prerequis" data-dtype="String">{{system.prerequis}}</textarea>
 | 
						|
        </li>
 | 
						|
 | 
						|
        <li class="flexrow item">
 | 
						|
          <label class="generic-label item-field-label-long">Résumé (si bonus) </label>
 | 
						|
        </li>
 | 
						|
        <li class="flexrow item">
 | 
						|
            <textarea rows="3" type="text" class="padd-right status-small-label color-class-common"
 | 
						|
            name="system.resumebonus" data-dtype="String">{{system.resumebonus}}</textarea>
 | 
						|
        </li>
 | 
						|
 | 
						|
        <li class="flexrow item">
 | 
						|
          <label class="generic-label item-field-label-medium">Déja utilisé ? </label>
 | 
						|
          <input class="predilection-maitrise" type="checkbox" name="system.used" {{checked system.used}} />
 | 
						|
        </li>
 | 
						|
 | 
						|
        {{> systems/fvtt-hawkmoon-cyd/templates/partial-automation.html}}
 | 
						|
 | 
						|
      </ul>
 | 
						|
    </div>
 | 
						|
 | 
						|
  </section>
 | 
						|
</form> |