Test for the Prof

Here are my changes, not sure if it will help.
This commit is contained in:
supervj 2021-04-29 16:56:30 -04:00
parent a04a66ab6d
commit 692538f0c2
4 changed files with 140 additions and 63 deletions

View file

@ -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>