49 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.2 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-warhero/templates/partial-item-nav.html}}
 | |
| 
 | |
|     {{!-- Sheet Body --}}
 | |
|     <section class="sheet-body">
 | |
| 
 | |
|       {{> systems/fvtt-warhero/templates/partial-item-description.html}}
 | |
| 
 | |
|       <div class="tab details" data-group="primary" data-tab="details">
 | |
|         <ul>
 | |
|           <li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.israceskill"}}</label>
 | |
|             <input type="checkbox" name="system.raceskill" {{checked system.raceskill}}/>
 | |
|           </li>
 | |
| 
 | |
|           <li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.isclassskill"}}</label>
 | |
|             <input type="checkbox" name="system.classskill" {{checked system.classskill}}/>
 | |
|           </li>
 | |
| 
 | |
|           <li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.unlimited"}}</label>
 | |
|             <input type="checkbox" name="system.unlimited" {{checked system.unlimited}}/>
 | |
|           </li>
 | |
| 
 | |
|           <li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.skilllevelacquired"}}</label>
 | |
|             <input type="text" class="item-field-label-medium " name="system.acquiredatlevel" value="{{system.acquiredatlevel}}" data-dtype="Number"/>
 | |
|           </li>
 | |
| 
 | |
|           {{#if system.unlimited}}
 | |
| 
 | |
|           {{else}}
 | |
|             <li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.currentuse"}}</label>
 | |
|               <input type="text" class="item-field-label-medium " name="system.currentuse" value="{{system.currentuse}}" data-dtype="Number"/>
 | |
|             </li>
 | |
|             <li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.maxuse"}}</label>
 | |
|               <input type="text" class="item-field-label-medium " name="system.maxuse" value="{{system.maxuse}}" data-dtype="Number"/>
 | |
|             </li>
 | |
|           {{/if}}
 | |
|         </ul>
 | |
| 
 | |
|       </div>
 | |
|     </section>
 | |
| </form>
 |