Blame Raw
· · · 17 lines (548 B)
0 contributors
1<h3 data-i18n="Choose what to export">
2 Choose what to export
3</h3>
4<div class="flex-container flexFlowColumn justifyLeft">
5 {{#each sections}}
6 {{#with this}}
7 <label class="checkbox_label">
8 {{#if checked}}
9 <input type="checkbox" value="{{key}}" checked />
10 {{else}}
11 <input type="checkbox" value="{{key}}" />
12 {{/if}}
13 <span data-i18n="{{name}}">{{name}}</span>
14 </label>
15 {{/with}}
16 {{/each}}
17</div>