move document types from template.json into system.json change Talents into Items add rolls for Talents change the fallback language to german
11 lines
427 B
Handlebars
11 lines
427 B
Handlebars
<div class="editable-input editable-{{type}} {{class}}">
|
|
{{#if (eq type "checkbox")}}
|
|
<input type="checkbox" name="{{name}}" data-name="{{data-name}}" {{checked value}}>
|
|
{{else}}
|
|
<input type="{{type}}" name="{{name}}" data-name="{{data-name}}" value="{{value}}" placeholder="{{placeholder}}">
|
|
{{/if}}
|
|
|
|
{{#if placeholder}}
|
|
<div class="placeholder">{{placeholder}}</div>
|
|
{{/if}}
|
|
</div> |