forked from GitHub-Mirrors/foundry-sw5e
Test for the Prof
Here are my changes, not sure if it will help.
This commit is contained in:
parent
a04a66ab6d
commit
692538f0c2
4 changed files with 140 additions and 63 deletions
|
@ -159,9 +159,36 @@
|
|||
<select class="actor-size" name="data.details.role">
|
||||
{{#select data.details.role}}
|
||||
<option value=""> </option>
|
||||
{{#each config.starshipRolessm as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{#if isTiny}}
|
||||
{{#each config.starshipRolestiny as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{#if isSmall}}
|
||||
{{#each config.starshipRolessm as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{#if isMedium}}
|
||||
{{#each config.starshipRolesmed as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{#if isLarge}}
|
||||
{{#each config.starshipRoleslg as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{#if isHuge}}
|
||||
{{#each config.starshipRoleshuge as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{#if isGargantuan}}
|
||||
{{#each config.starshipRolesgrg as |label role|}}
|
||||
<option value="{{role}}">{{label}}</option>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</label>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue