- Closes #83
- Fixes improper label-id for radio buttons in Character.
This commit is contained in:
Megastruktur 2020-10-18 13:58:05 +03:00
parent 22467a1f5e
commit 6c2571e015
4 changed files with 159 additions and 152 deletions

View File

@ -2,6 +2,7 @@ v2.5
- Updates the functionality with checkboxes and new FormDataExtended api.
- Fixes Traumas for FVTT 0.7.2+.
- Version update to be FVTT 0.7.2+ compatible.
- Fixes improper label-id for radio buttons in Character.
v2.4
- Fixed Rolls: roll position is shown correctly now

View File

@ -4,12 +4,12 @@
<div class="grow-two">
<div id="name">
<label for="character-name">{{localize "BITD.Name"}}</label>
<input type="text" id="character-name" name="name" value="{{actor.name}}">
<label for="character-{{actor._id}}-name">{{localize "BITD.Name"}}</label>
<input type="text" id="character-{{actor._id}}-name" name="name" value="{{actor.name}}">
</div>
<div id="character-traits" class="flex-column">
<div class="item-block flex-horizontal">
<div class="item-class-label"><a class="item-add-popup" data-distinct="true" data-item-type="heritage">{{localize "BITD.Heritage"}}</a></div>
{{#each actor.items as |item id|}}
@ -77,11 +77,11 @@
<div class="grow-two">
<div id="alias">
<label for="character-alias">{{localize "BITD.Alias"}}</label>
<input type="text" id="character-alias" name="data.alias" value="{{data.alias}}">
<label for="character-{{actor._id}}-alias">{{localize "BITD.Alias"}}</label>
<input type="text" id="character-{{actor._id}}-alias" name="data.alias" value="{{data.alias}}">
</div>
{{> "systems/blades-in-the-dark/templates/parts/coins.html"}}
{{> "systems/blades-in-the-dark/templates/parts/coins.html" actor=actor}}
</div>
</section>
@ -91,30 +91,31 @@
</section>
{{!-- Stress and Trauma --}}
<div id="stress-trauma" class="section big-teeth-section">
<div id="character-stress" class="big-teeth">
<div id="character-{{actor._id}}-stress" class="big-teeth">
{{#multiboxes data.stress.value}}
<input type="radio" id="character-stress-0" name="data.stress.value" value="0" dtype="Radio">
<label class="black-label" for="character-stress-0">{{localize data.stress.name}}</label>
<input type="radio" id="character-{{actor._id}}-stress-0" name="data.stress.value" value="0" dtype="Radio">
<label class="black-label" for="character-{{actor._id}}-stress-0">{{localize data.stress.name}}</label>
{{#times_from_1 data.stress.max}}
<input type="radio" id="character-stress-{{this}}" name="data.stress.value" value="{{this}}" dtype="Radio">
<label for="character-stress-{{this}}"></label>
<input type="radio" id="character-{{../actor._id}}-stress-{{this}}" name="data.stress.value" value="{{this}}"
dtype="Radio">
<label for="character-{{../actor._id}}-stress-{{this}}"></label>
{{/times_from_1}}
{{/multiboxes}}
</div>
<div id="character-trauma-container" class="small-teeth-container">
<div id="character-{{actor._id}}-trauma-container" class="small-teeth-container">
{{#traumacounter data.trauma.list}}
<div id="character-trauma" class="small-teeth-wrap">
<label class="black-label" for="character-trauma-counter-0">{{localize data.trauma.name}}</label>
<div id="character-{{actor._id}}-trauma" class="small-teeth-wrap">
<label class="black-label" for="character-{{actor._id}}-trauma-counter-0">{{localize data.trauma.name}}</label>
<div id="trauma-teeth" class="small-teeth">
<input type="radio" id="character-trauma-counter-0" name="data.trauma.value" value="0">
<input type="radio" id="character-{{actor._id}}-trauma-counter-0" name="data.trauma.value" value="0">
{{#times_from_1 data.trauma.max}}
<input type="radio" id="character-trauma-counter-{{this}}" name="data.trauma.value" value="{{this}}" disabled>
<label for="character-trauma-counter-{{this}}"></label>
<input type="radio" id="character-{{actor._id}}-trauma-counter-{{this}}" name="data.trauma.value" value="{{this}}" disabled>
<label for="character-{{actor._id}}-trauma-counter-{{this}}"></label>
{{/times_from_1}}
</div>
</div>
@ -164,28 +165,28 @@
<table>
<thead>
<th class="black-white" colspan="4">{{localize "BITD.Harm"}}</th>
<th class="black-white"><label for="character-healing-clock-0">{{localize "BITD.Healing"}}</label></th>
<th class="black-white"><label for="character-{{actor._id}}-healing-clock-0">{{localize "BITD.Healing"}}</label></th>
<th class="black-white">{{localize "BITD.Armor"}}</th>
</thead>
<tbody>
<tr>
<td>3</td>
<td colspan="2">
<input type="text" id="character-harm-3-1" name="data.harm.heavy.one" value="{{data.harm.heavy.one}}">
<input type="text" id="character-{{actor._id}}-harm-3-1" name="data.harm.heavy.one" value="{{data.harm.heavy.one}}">
</td>
<td>{{localize "BITD.NeedHelp"}}</td>
<td rowspan="3">
{{#multiboxes data.healing-clock}}
<div id="character-health-clock">
<input type="radio" value="0" id="character-healing-clock-0" name="data.healing-clock" checked="checked">
<input type="radio" value="1" id="character-healing-clock-1" name="data.healing-clock">
<label for="character-healing-clock-1"></label>
<input type="radio" value="2" id="character-healing-clock-2" name="data.healing-clock">
<label for="character-healing-clock-2"></label>
<input type="radio" value="3" id="character-healing-clock-3" name="data.healing-clock">
<label for="character-healing-clock-3"></label>
<input type="radio" value="4" id="character-healing-clock-4" name="data.healing-clock">
<label for="character-healing-clock-4"></label>
<input type="radio" value="0" id="character-{{actor._id}}-healing-clock-0" name="data.healing-clock" checked="checked">
<input type="radio" value="1" id="character-{{actor._id}}-healing-clock-1" name="data.healing-clock">
<label for="character-{{actor._id}}-healing-clock-1"></label>
<input type="radio" value="2" id="character-{{actor._id}}-healing-clock-2" name="data.healing-clock">
<label for="character-{{actor._id}}-healing-clock-2"></label>
<input type="radio" value="3" id="character-{{actor._id}}-healing-clock-3" name="data.healing-clock">
<label for="character-{{actor._id}}-healing-clock-3"></label>
<input type="radio" value="4" id="character-{{actor._id}}-healing-clock-4" name="data.healing-clock">
<label for="character-{{actor._id}}-healing-clock-4"></label>
{{/multiboxes}}
</div>
</td>
@ -207,20 +208,20 @@
<tr>
<td>2</td>
<td>
<input type="text" id="character-harm-2-1" name="data.harm.medium.one" value="{{data.harm.medium.one}}">
<input type="text" id="character-{{actor._id}}-harm-2-1" name="data.harm.medium.one" value="{{data.harm.medium.one}}">
</td>
<td>
<input type="text" id="character-harm-2-2" name="data.harm.medium.two" value="{{data.harm.medium.two}}">
<input type="text" id="character-{{actor._id}}-harm-2-2" name="data.harm.medium.two" value="{{data.harm.medium.two}}">
</td>
<td>-1D</td>
</tr>
<tr>
<td>1</td>
<td>
<input type="text" id="character-harm-1-1" name="data.harm.light.one" value="{{data.harm.light.one}}">
<input type="text" id="character-{{actor._id}}-harm-1-1" name="data.harm.light.one" value="{{data.harm.light.one}}">
</td>
<td>
<input type="text" id="character-harm-1-2" name="data.harm.light.two" value="{{data.harm.light.two}}">
<input type="text" id="character-{{actor._id}}-harm-1-2" name="data.harm.light.two" value="{{data.harm.light.two}}">
</td>
<td>{{localize "BITD.LessEffect"}}</td>
</tr>
@ -247,33 +248,33 @@
<div id="abilities" class="tab flex-vertical" data-tab="abilities">
<div class="label-stripe">
<p><label for="character-experience-0">{{localize "BITD.Abilities"}}</label></p>
<p><label for="character-{{actor._id}}-experience-0">{{localize "BITD.Abilities"}}</label></p>
<p><a class="item-add-popup" data-item-type="ability"><i class="fas fa-plus-square"></i></a></p>
<div id="character-experience" class="teeth-experience">
{{#multiboxes data.experience}}
<input type="radio" id="character-experience-0" name="data.experience" value="0" dtype="Radio">
<input type="radio" id="character-experience-1" name="data.experience" value="1" dtype="Radio">
<label for="character-experience-1"></label>
<input type="radio" id="character-experience-2" name="data.experience" value="2" dtype="Radio">
<label for="character-experience-2"></label>
<input type="radio" id="character-experience-3" name="data.experience" value="3" dtype="Radio">
<label for="character-experience-3"></label>
<input type="radio" id="character-experience-4" name="data.experience" value="4" dtype="Radio">
<label for="character-experience-4"></label>
<input type="radio" id="character-experience-5" name="data.experience" value="5" dtype="Radio">
<label for="character-experience-5"></label>
<input type="radio" id="character-experience-6" name="data.experience" value="6" dtype="Radio">
<label for="character-experience-6"></label>
<input type="radio" id="character-experience-7" name="data.experience" value="7" dtype="Radio">
<label for="character-experience-7"></label>
<input type="radio" id="character-experience-8" name="data.experience" value="8" dtype="Radio">
<label for="character-experience-8"></label>
<input type="radio" id="character-experience-9" name="data.experience" value="9" dtype="Radio">
<label for="character-experience-9"></label>
<input type="radio" id="character-{{actor._id}}-experience-0" name="data.experience" value="0" dtype="Radio">
<input type="radio" id="character-{{actor._id}}-experience-1" name="data.experience" value="1" dtype="Radio">
<label for="character-{{actor._id}}-experience-1"></label>
<input type="radio" id="character-{{actor._id}}-experience-2" name="data.experience" value="2" dtype="Radio">
<label for="character-{{actor._id}}-experience-2"></label>
<input type="radio" id="character-{{actor._id}}-experience-3" name="data.experience" value="3" dtype="Radio">
<label for="character-{{actor._id}}-experience-3"></label>
<input type="radio" id="character-{{actor._id}}-experience-4" name="data.experience" value="4" dtype="Radio">
<label for="character-{{actor._id}}-experience-4"></label>
<input type="radio" id="character-{{actor._id}}-experience-5" name="data.experience" value="5" dtype="Radio">
<label for="character-{{actor._id}}-experience-5"></label>
<input type="radio" id="character-{{actor._id}}-experience-6" name="data.experience" value="6" dtype="Radio">
<label for="character-{{actor._id}}-experience-6"></label>
<input type="radio" id="character-{{actor._id}}-experience-7" name="data.experience" value="7" dtype="Radio">
<label for="character-{{actor._id}}-experience-7"></label>
<input type="radio" id="character-{{actor._id}}-experience-8" name="data.experience" value="8" dtype="Radio">
<label for="character-{{actor._id}}-experience-8"></label>
<input type="radio" id="character-{{actor._id}}-experience-9" name="data.experience" value="9" dtype="Radio">
<label for="character-{{actor._id}}-experience-9"></label>
{{/multiboxes}}
</div>
</div>
<div id="abilities-list">
{{#each actor.items as |item id|}}
{{#if (eq item.type "ability")}}
@ -338,7 +339,7 @@
</div>
{{!-- Attributes --}}
{{> "systems/blades-in-the-dark/templates/parts/attributes.html"}}
{{> "systems/blades-in-the-dark/templates/parts/attributes.html" actor=actor}}
</section>
</form>

View File

@ -10,11 +10,13 @@
<div class="stripe-tooth-body">
{{#multiboxes attribute.exp}}
<label for="{{attribute_name}}-exp-0"><i class="fab fa-creative-commons-zero"></i></label>
<input type="radio" id="{{attribute_name}}-exp-0" name="data.attributes.{{attribute_name}}.exp" value="0" checked="checked">
<label for="{{../actor._id}}-{{attribute_name}}-exp-0"><i class="fab fa-creative-commons-zero"></i></label>
<input type="radio" id="{{../actor._id}}-{{attribute_name}}-exp-0"
name="data.attributes.{{attribute_name}}.exp" value="0" checked="checked">
{{#times_from_1 6}}
<input type="radio" id="{{attribute_name}}-exp-{{this}}" name="data.attributes.{{attribute_name}}.exp" value="{{this}}">
<label for="{{attribute_name}}-exp-{{this}}"></label>
<input type="radio" id="{{../../actor._id}}-{{attribute_name}}-exp-{{this}}"
name="data.attributes.{{attribute_name}}.exp" value="{{this}}">
<label for="{{../../actor._id}}-{{attribute_name}}-exp-{{this}}"></label>
{{/times_from_1}}
{{/multiboxes}}
</div>
@ -23,13 +25,16 @@
{{!-- Skills --}}
{{#each attribute.skills as |skill skill_name|}}
<div class="flex-horizontal">
<div class="attributes-container">
{{#multiboxes skill.value}}
{{#times_from_0 4}}
<input type="radio" id="attributes-{{skill_name}}-{{this}}" name="data.attributes.{{attribute_name}}.skills.{{skill_name}}.value" value="{{this}}">
<label for="attributes-{{skill_name}}-{{this}}"></label>
<input type="radio" id="attributes-{{../../../actor._id}}-{{skill_name}}-{{this}}"
name="data.attributes.{{attribute_name}}.skills.{{skill_name}}.value" value="{{this}}">
<label for="attributes-{{../../../actor._id}}-{{skill_name}}-{{this}}"></label>
{{/times_from_0}}
<div class="attribute-skill-label roll-die-attribute rollable-text" data-roll-attribute="{{skill_name}}">{{localize skill.label}}</div>

View File

@ -2,19 +2,19 @@
<div id="coins-hands">
<div class="stripe">
<label for="coins-hands-0">{{localize "BITD.Coin"}}</label>
<label for="coins-{{actor._id}}-hands-0">{{localize "BITD.Coin"}}</label>
</div>
<div class="coins coins-hands">
{{#multiboxes data.coins}}
<input type="radio" id="coins-hands-0" name="data.coins" value="0" checked="checked">
<input type="radio" id="coins-hands-1" name="data.coins" value="1">
<label for="coins-hands-1"></label>
<input type="radio" id="coins-hands-2" name="data.coins" value="2">
<label for="coins-hands-2"></label>
<input type="radio" id="coins-hands-3" name="data.coins" value="3">
<label for="coins-hands-3"></label>
<input type="radio" id="coins-hands-4" name="data.coins" value="4">
<label for="coins-hands-4"></label>
<input type="radio" id="coins-{{actor._id}}-hands-0" name="data.coins" value="0" checked="checked">
<input type="radio" id="coins-{{actor._id}}-hands-1" name="data.coins" value="1">
<label for="coins-{{actor._id}}-hands-1"></label>
<input type="radio" id="coins-{{actor._id}}-hands-2" name="data.coins" value="2">
<label for="coins-{{actor._id}}-hands-2"></label>
<input type="radio" id="coins-{{actor._id}}-hands-3" name="data.coins" value="3">
<label for="coins-{{actor._id}}-hands-3"></label>
<input type="radio" id="coins-{{actor._id}}-hands-4" name="data.coins" value="4">
<label for="coins-{{actor._id}}-hands-4"></label>
{{/multiboxes}}
</div>
</div>
@ -22,94 +22,94 @@
<div id="coins-stashed">
<div class="stripe">
<label for="coins-stashed-0">{{localize "BITD.Stash"}}</label>
<label for="coins-{{actor._id}}-stashed-0">{{localize "BITD.Stash"}}</label>
</div>
<div class="coins coins-stashed">
{{#multiboxes data.coins_stashed}}
<input type="radio" id="coins-stashed-0" name="data.coins_stashed" value="0" checked="checked">
<input type="radio" id="coins-stashed-1" name="data.coins_stashed" value="1">
<label for="coins-stashed-1"></label>
<input type="radio" id="coins-stashed-2" name="data.coins_stashed" value="2">
<label for="coins-stashed-2"></label>
<input type="radio" id="coins-stashed-3" name="data.coins_stashed" value="3">
<label for="coins-stashed-3"></label>
<input type="radio" id="coins-stashed-4" name="data.coins_stashed" value="4">
<label for="coins-stashed-4"></label>
<input type="radio" id="coins-stashed-5" name="data.coins_stashed" value="5">
<label for="coins-stashed-5"></label>
<input type="radio" id="coins-stashed-6" name="data.coins_stashed" value="6">
<label for="coins-stashed-6"></label>
<input type="radio" id="coins-stashed-7" name="data.coins_stashed" value="7">
<label for="coins-stashed-7"></label>
<input type="radio" id="coins-stashed-8" name="data.coins_stashed" value="8">
<label for="coins-stashed-8"></label>
<input type="radio" id="coins-stashed-9" name="data.coins_stashed" value="9">
<label for="coins-stashed-9"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-0" name="data.coins_stashed" value="0" checked="checked">
<input type="radio" id="coins-{{actor._id}}-stashed-1" name="data.coins_stashed" value="1">
<label for="coins-{{actor._id}}-stashed-1"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-2" name="data.coins_stashed" value="2">
<label for="coins-{{actor._id}}-stashed-2"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-3" name="data.coins_stashed" value="3">
<label for="coins-{{actor._id}}-stashed-3"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-4" name="data.coins_stashed" value="4">
<label for="coins-{{actor._id}}-stashed-4"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-5" name="data.coins_stashed" value="5">
<label for="coins-{{actor._id}}-stashed-5"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-6" name="data.coins_stashed" value="6">
<label for="coins-{{actor._id}}-stashed-6"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-7" name="data.coins_stashed" value="7">
<label for="coins-{{actor._id}}-stashed-7"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-8" name="data.coins_stashed" value="8">
<label for="coins-{{actor._id}}-stashed-8"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-9" name="data.coins_stashed" value="9">
<label for="coins-{{actor._id}}-stashed-9"></label>
<input type="radio" id="coins-stashed-10" name="data.coins_stashed" value="10">
<label for="coins-stashed-10"></label>
<input type="radio" id="coins-stashed-11" name="data.coins_stashed" value="11">
<label for="coins-stashed-11"></label>
<input type="radio" id="coins-stashed-12" name="data.coins_stashed" value="12">
<label for="coins-stashed-12"></label>
<input type="radio" id="coins-stashed-13" name="data.coins_stashed" value="13">
<label for="coins-stashed-13"></label>
<input type="radio" id="coins-stashed-14" name="data.coins_stashed" value="14">
<label for="coins-stashed-14"></label>
<input type="radio" id="coins-stashed-15" name="data.coins_stashed" value="15">
<label for="coins-stashed-15"></label>
<input type="radio" id="coins-stashed-16" name="data.coins_stashed" value="16">
<label for="coins-stashed-16"></label>
<input type="radio" id="coins-stashed-17" name="data.coins_stashed" value="17">
<label for="coins-stashed-17"></label>
<input type="radio" id="coins-stashed-18" name="data.coins_stashed" value="18">
<label for="coins-stashed-18"></label>
<input type="radio" id="coins-stashed-19" name="data.coins_stashed" value="19">
<label for="coins-stashed-19"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-10" name="data.coins_stashed" value="10">
<label for="coins-{{actor._id}}-stashed-10"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-11" name="data.coins_stashed" value="11">
<label for="coins-{{actor._id}}-stashed-11"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-12" name="data.coins_stashed" value="12">
<label for="coins-{{actor._id}}-stashed-12"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-13" name="data.coins_stashed" value="13">
<label for="coins-{{actor._id}}-stashed-13"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-14" name="data.coins_stashed" value="14">
<label for="coins-{{actor._id}}-stashed-14"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-15" name="data.coins_stashed" value="15">
<label for="coins-{{actor._id}}-stashed-15"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-16" name="data.coins_stashed" value="16">
<label for="coins-{{actor._id}}-stashed-16"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-17" name="data.coins_stashed" value="17">
<label for="coins-{{actor._id}}-stashed-17"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-18" name="data.coins_stashed" value="18">
<label for="coins-{{actor._id}}-stashed-18"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-19" name="data.coins_stashed" value="19">
<label for="coins-{{actor._id}}-stashed-19"></label>
<input type="radio" id="coins-stashed-20" name="data.coins_stashed" value="20">
<label for="coins-stashed-20"></label>
<input type="radio" id="coins-stashed-21" name="data.coins_stashed" value="21">
<label for="coins-stashed-21"></label>
<input type="radio" id="coins-stashed-22" name="data.coins_stashed" value="22">
<label for="coins-stashed-22"></label>
<input type="radio" id="coins-stashed-23" name="data.coins_stashed" value="23">
<label for="coins-stashed-23"></label>
<input type="radio" id="coins-stashed-24" name="data.coins_stashed" value="24">
<label for="coins-stashed-24"></label>
<input type="radio" id="coins-stashed-25" name="data.coins_stashed" value="25">
<label for="coins-stashed-25"></label>
<input type="radio" id="coins-stashed-26" name="data.coins_stashed" value="26">
<label for="coins-stashed-26"></label>
<input type="radio" id="coins-stashed-27" name="data.coins_stashed" value="27">
<label for="coins-stashed-27"></label>
<input type="radio" id="coins-stashed-28" name="data.coins_stashed" value="28">
<label for="coins-stashed-28"></label>
<input type="radio" id="coins-stashed-29" name="data.coins_stashed" value="29">
<label for="coins-stashed-29"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-20" name="data.coins_stashed" value="20">
<label for="coins-{{actor._id}}-stashed-20"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-21" name="data.coins_stashed" value="21">
<label for="coins-{{actor._id}}-stashed-21"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-22" name="data.coins_stashed" value="22">
<label for="coins-{{actor._id}}-stashed-22"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-23" name="data.coins_stashed" value="23">
<label for="coins-{{actor._id}}-stashed-23"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-24" name="data.coins_stashed" value="24">
<label for="coins-{{actor._id}}-stashed-24"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-25" name="data.coins_stashed" value="25">
<label for="coins-{{actor._id}}-stashed-25"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-26" name="data.coins_stashed" value="26">
<label for="coins-{{actor._id}}-stashed-26"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-27" name="data.coins_stashed" value="27">
<label for="coins-{{actor._id}}-stashed-27"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-28" name="data.coins_stashed" value="28">
<label for="coins-{{actor._id}}-stashed-28"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-29" name="data.coins_stashed" value="29">
<label for="coins-{{actor._id}}-stashed-29"></label>
<input type="radio" id="coins-stashed-30" name="data.coins_stashed" value="30">
<label for="coins-stashed-30"></label>
<input type="radio" id="coins-stashed-31" name="data.coins_stashed" value="31">
<label for="coins-stashed-31"></label>
<input type="radio" id="coins-stashed-32" name="data.coins_stashed" value="32">
<label for="coins-stashed-32"></label>
<input type="radio" id="coins-stashed-33" name="data.coins_stashed" value="33">
<label for="coins-stashed-33"></label>
<input type="radio" id="coins-stashed-34" name="data.coins_stashed" value="34">
<label for="coins-stashed-34"></label>
<input type="radio" id="coins-stashed-35" name="data.coins_stashed" value="35">
<label for="coins-stashed-35"></label>
<input type="radio" id="coins-stashed-36" name="data.coins_stashed" value="36">
<label for="coins-stashed-36"></label>
<input type="radio" id="coins-stashed-37" name="data.coins_stashed" value="37">
<label for="coins-stashed-37"></label>
<input type="radio" id="coins-stashed-38" name="data.coins_stashed" value="38">
<label for="coins-stashed-38"></label>
<input type="radio" id="coins-stashed-39" name="data.coins_stashed" value="39">
<label for="coins-stashed-39"></label>
<input type="radio" id="coins-stashed-40" name="data.coins_stashed" value="40">
<label for="coins-stashed-40"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-30" name="data.coins_stashed" value="30">
<label for="coins-{{actor._id}}-stashed-30"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-31" name="data.coins_stashed" value="31">
<label for="coins-{{actor._id}}-stashed-31"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-32" name="data.coins_stashed" value="32">
<label for="coins-{{actor._id}}-stashed-32"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-33" name="data.coins_stashed" value="33">
<label for="coins-{{actor._id}}-stashed-33"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-34" name="data.coins_stashed" value="34">
<label for="coins-{{actor._id}}-stashed-34"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-35" name="data.coins_stashed" value="35">
<label for="coins-{{actor._id}}-stashed-35"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-36" name="data.coins_stashed" value="36">
<label for="coins-{{actor._id}}-stashed-36"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-37" name="data.coins_stashed" value="37">
<label for="coins-{{actor._id}}-stashed-37"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-38" name="data.coins_stashed" value="38">
<label for="coins-{{actor._id}}-stashed-38"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-39" name="data.coins_stashed" value="39">
<label for="coins-{{actor._id}}-stashed-39"></label>
<input type="radio" id="coins-{{actor._id}}-stashed-40" name="data.coins_stashed" value="40">
<label for="coins-{{actor._id}}-stashed-40"></label>
{{/multiboxes}}
</div>