First full step for character creation
This commit is contained in:
23
templates/dialogs/character-creator-origine.hbs
Normal file
23
templates/dialogs/character-creator-origine.hbs
Normal file
@ -0,0 +1,23 @@
|
||||
<div class="fvtt-te-deum-character-creator">
|
||||
|
||||
<h2>{{title}}</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<select name="sexe">
|
||||
{{selectOptions sexeChoice selected="hommme"}}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<select name="religion">
|
||||
{{selectOptions religionChoice selected="catholique" }}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<select name="origineSociale">
|
||||
{{selectOptions origineChoice selected="noblesseepee" valueAttr="id"}}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</div>
|
18
templates/dialogs/character-creator-select-carac.hbs
Normal file
18
templates/dialogs/character-creator-select-carac.hbs
Normal file
@ -0,0 +1,18 @@
|
||||
<div class="fvtt-te-deum-character-creator">
|
||||
|
||||
<h2>{{title}}</h2>
|
||||
<div class="form-group">
|
||||
<select name="carac">
|
||||
{{selectOptions caracList valueAttr="id" labelAttr="label"}}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
{{#each competences as |comp idx|}}
|
||||
{{#if comp.valid}}
|
||||
<div class="form-group">
|
||||
<label>Compétence +1 : {{comp.compName}}</label>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/each}}
|
||||
|
||||
</div>
|
12
templates/dialogs/character-creator-select-questions.hbs
Normal file
12
templates/dialogs/character-creator-select-questions.hbs
Normal file
@ -0,0 +1,12 @@
|
||||
<div class="fvtt-te-deum-character-creator">
|
||||
|
||||
<h2>{{title}}</h2>
|
||||
<div class="form-group">
|
||||
{{question}}
|
||||
</div>
|
||||
|
||||
<div class="flexcol">
|
||||
{{radioBoxes 'responseKey' responsesRadio checked="reponse1" valueAttr="id" labelAttr="label"}}
|
||||
</div>
|
||||
|
||||
</div>
|
10
templates/dialogs/character-creator-select-stage-name.hbs
Normal file
10
templates/dialogs/character-creator-select-stage-name.hbs
Normal file
@ -0,0 +1,10 @@
|
||||
<div class="fvtt-te-deum-character-creator">
|
||||
|
||||
<h2>{{title}}</h2>
|
||||
<div class="form-group">
|
||||
<select name="selectedItem">
|
||||
{{selectOptions choices valueAttr="id" labelAttr="name"}}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user