initial commit

This commit is contained in:
CPTN Cosmo 2026-01-23 20:06:09 +01:00
commit 4ebe86ee8c
No known key found for this signature in database
8 changed files with 1006 additions and 0 deletions

27
templates/importer.hbs Normal file
View file

@ -0,0 +1,27 @@
<div class="dh-wrapper">
{{#if isInput}}
<div class="form-group">
<label>Import Type</label>
<select name="type">
{{#each types as |label key|}}
<option value="{{key}}">{{label}}</option>
{{/each}}
</select>
</div>
<div class="form-group" style="flex: 1;">
<label>Paste Statblocks</label>
<textarea name="text" placeholder="Paste data here..."></textarea>
</div>
<div class="action-footer">
<button type="button" data-action="parse"><i class="fas fa-search"></i> Review Data</button>
</div>
{{/if}}
{{#if isPreview}}
{{> "modules/dh-importer/templates/preview.hbs"}}
{{/if}}
</div>