forked from GitHub-Mirrors/foundry-sw5e
Big Species Update
All manner of Species updates, as well as some new CSS for journal entries and rollable tables.
This commit is contained in:
parent
60c587024f
commit
ebc70539ff
376 changed files with 5339 additions and 51 deletions
18
templates/journal/sheet.html
Normal file
18
templates/journal/sheet.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<input name="name" type="text" value="{{entity.name}}" placeholder="Entry Title"/>
|
||||
|
||||
<select name="folder">
|
||||
{{#select entity.folder}}
|
||||
<option value=""></option>
|
||||
{{#each folders}}
|
||||
<option value="{{this.id}}">{{this.name}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
|
||||
{{editor content=entity.content target="content" button=true editable=editable owner=owner}}
|
||||
|
||||
{{#if editable}}
|
||||
<button type="submit" name="submit"><i class="fas fa-feather-alt"></i> Save Entry</button>
|
||||
{{/if}}
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue