43 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
		
		
			
		
	
	
			43 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
| 
								 | 
							
								<form class="{{cssClass}} item-sheet-talent" autocomplete="off">
							 | 
						||
| 
								 | 
							
								    <div class="header">
							 | 
						||
| 
								 | 
							
								        <div class="avatar flex-group-center" style="grid-row: 1/3;">
							 | 
						||
| 
								 | 
							
								            <img class="item-avatar-img" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div class="container flex-group-center item-name">
							 | 
						||
| 
								 | 
							
								            <h1><input name="name" type="text" value="{{item.name}}" placeholder="{{localize "ITEM.ARMOR"}}" /></h1>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								    <div class="grid-container" style="grid-template-columns: 1fr 1fr;">
							 | 
						||
| 
								 | 
							
								        <div class="cost">
							 | 
						||
| 
								 | 
							
								            <label>{{localize data.cost.label}}</label>
							 | 
						||
| 
								 | 
							
								            <input name="data.cost.value" type="text" value="{{data.cost.value}}" />
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div>
							 | 
						||
| 
								 | 
							
								            <label>{{localize data.difficulty.label}}</label>
							 | 
						||
| 
								 | 
							
								            <select class="item-weapon-cat-select" name="data.difficulty.value">
							 | 
						||
| 
								 | 
							
								                {{#select data.difficulty.value}}
							 | 
						||
| 
								 | 
							
								                <option value="simple">{{localize "DIFFICULTY.SIMPLE"}}</option>
							 | 
						||
| 
								 | 
							
								                <option value="easy">{{localize "DIFFICULTY.EASY"}}</option>
							 | 
						||
| 
								 | 
							
								                <option value="average">{{localize "DIFFICULTY.AVERAGE"}}</option>
							 | 
						||
| 
								 | 
							
								                <option value="hard">{{localize "DIFFICULTY.HARD"}}</option>
							 | 
						||
| 
								 | 
							
								                <option value="daunting">{{localize "DIFFICULTY.DAUNTING"}}</option>
							 | 
						||
| 
								 | 
							
								                {{/select}}
							 | 
						||
| 
								 | 
							
								            </select>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div style="grid-column-start: 1; grid-column-end: 3;">
							 | 
						||
| 
								 | 
							
								            <label>{{localize data.roll.label}}</label>
							 | 
						||
| 
								 | 
							
								            <input name="data.roll.value" type="text" value="{{data.roll.value}}" />
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								    <div class="item">
							 | 
						||
| 
								 | 
							
								        <div class="description">
							 | 
						||
| 
								 | 
							
								            <h2>{{localize data.description.label}}</h2>
							 | 
						||
| 
								 | 
							
								            <div class="info">
							 | 
						||
| 
								 | 
							
								                <div class="description">
							 | 
						||
| 
								 | 
							
								                    {{editor content=data.description.value target="data.description.value" button=true owner=owner editable=editable}}
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								</form>
							 |