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}}
|
|
|
|
<img class="button-effect-img" height="16" width="16" src="{{effect.icon}}" alt="{{ localize effect.label}}" />
|
2021-06-29 00:56:25 +02:00
|
|
|
<label>{{localize effect.label}}</label>
|
2021-01-13 03:42:13 +01:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
|