37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 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-pegasus-rpg/templates/partial-item-nav.html}}
 | |
| 
 | |
|   {{!-- Sheet Body --}}
 | |
|   <section class="sheet-body">
 | |
| 
 | |
|     {{> systems/fvtt-pegasus-rpg/templates/partial-item-description.html}}
 | |
| 
 | |
|     <div class="tab details" data-group="primary" data-tab="details">
 | |
|       <ul>
 | |
|           <li class="flexrow"><label class="generic-label">IDR</label>
 | |
|             <select class="competence-base flexrow" type="text" name="system.idr" value="{{data.idr}}" data-dtype="String">
 | |
|               {{#select data.idr}}
 | |
|               {{{optionsDiceList}}}
 | |
|               {{/select}}
 | |
|             </select> 
 | |
|           </li>
 | |
|           <li class="flexrow"><label class="generic-label">Capacity</label>
 | |
|             <input type="text" class="" name="system.capacity" value="{{data.capacity}}" data-dtype="Number"/>
 | |
|           </li>
 | |
| 
 | |
|           <li class="flexrow"><label class="generic-label">Value</label>
 | |
|             <input type="text" class="" name="system.value" value="{{data.value}}" data-dtype="Number"/>
 | |
|           </li>
 | |
| 
 | |
|         </ul>
 | |
|     </div>
 | |
| 
 | |
|   </section>
 | |
| </form>
 |