2021-01-13 03:42:13 +01:00
|
|
|
<form autocomplete="off" onsubmit="event.preventDefault();">
|
|
|
|
<ul>
|
|
|
|
{{#each effects as |effect key|}}
|
|
|
|
<li>
|
|
|
|
{{#if effect.rdd}}
|
|
|
|
<input class="resource-content" type="checkbox" checked disabled/>
|
|
|
|
{{else}}
|
|
|
|
<input class="resource-content select-effect" type="checkbox" name="{{effect.id}}" {{#if effect.active}}checked{{/if}}/>
|
|
|
|
{{/if}}
|
2024-06-07 11:12:00 +02:00
|
|
|
<img class="button-effect-img" height="16" width="16" src="{{effect.img}}" data-tooltip="{{localize effect.name}}" />
|
2023-11-11 20:38:16 +01:00
|
|
|
<label>{{localize effect.name}}</label>
|
2021-01-13 03:42:13 +01:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
|