mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 20:51:07 +01:00
Merged with development
This commit is contained in:
commit
0712ea70ae
24 changed files with 587 additions and 368 deletions
27
templates/sheets/items/class/questions.hbs
Normal file
27
templates/sheets/items/class/questions.hbs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<section
|
||||
class='tab {{tabs.questions.cssClass}} {{tabs.questions.id}}'
|
||||
data-tab='{{tabs.questions.id}}'
|
||||
data-group='{{tabs.questions.group}}'
|
||||
>
|
||||
<div class="questions-container">
|
||||
<fieldset>
|
||||
<legend>{{localize "DAGGERHEART.ACTORS.Character.backgroundQuestions"}}</legend>
|
||||
|
||||
<div class="questions-section">
|
||||
{{#each source.system.backgroundQuestions as | question index |}}
|
||||
<textarea name="{{concat "system.backgroundQuestions." index}}">{{question}}</textarea>
|
||||
{{/each}}
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>{{localize "DAGGERHEART.ACTORS.Character.connections"}}</legend>
|
||||
|
||||
<div class="questions-section">
|
||||
{{#each source.system.connections as | connection index |}}
|
||||
<textarea name="{{concat "system.connections." index}}">{{connection}}</textarea>
|
||||
{{/each}}
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue