36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <form class="{{cssClass}}" autocomplete="off">
 | |
|     <header class="sheet-header">
 | |
|         <img class="profile-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="tab" data-group="primary">
 | |
|           <div class="flexcol">
 | |
|             <label class="generic-label">Type</label>
 | |
|             <div class="form-group small-editor">
 | |
|               <select class="stat-value flexrow" type="text" name="system.category" value="{{data.category}}" data-dtype="String">
 | |
|                 {{#select data.category}}
 | |
|                 <option value="impairment">Impairment</option>
 | |
|                 <option value="disability">Disablity</option>
 | |
|                 <option value="shortcoming">Shortcoming</option>
 | |
|                 <option value="complication">Complication</option>
 | |
|                 {{/select}}
 | |
|               </select>     
 | |
|             </div>
 | |
|           </div>
 | |
|           <div class="flexcol">
 | |
|             <label class="generic-label">Description</label>
 | |
|             <div class="form-group medium-editor">
 | |
|               {{editor description target="system.description" button=true owner=owner editable=editable}}
 | |
|             </div>
 | |
|           </div>
 | |
|         </div>
 | |
| 
 | |
|     </section>
 | |
| </form>
 |