mirror of
https://github.com/RoY7x/worldbuilding.git
synced 2025-04-30 02:31:41 -04:00
- Fixed an issue with the actor/item creation dialog that prevented it from working on Foundry 0.7.x versions. - Removed obsolete translation string. - Bumped minimum core version now that 0.7.3 is in beta.
15 lines
508 B
HTML
15 lines
508 B
HTML
<form id="entity-create" autocomplete="off" onsubmit="event.preventDefault();">
|
|
<div class="form-group">
|
|
<label>{{localize "Name"}}</label>
|
|
<input type="text" name="name" placeholder="{{localize 'ENTITY.CreateNew'}} {{upper}}"/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{localize "Type"}}</label>
|
|
<select name="type">
|
|
{{#each types}}
|
|
<option value="{{this.value}}">{{this.label}}</option>
|
|
{{/each}}
|
|
</select>
|
|
</div>
|
|
</form>
|