File size: 541 Bytes
519a20c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<h3 data-i18n="Choose what to import">
    Choose what to import
</h3>
<div class="flex-container flexFlowColumn justifyLeft">
    {{#each sections}}
        {{#with this}}
            <label class="checkbox_label">
                <input type="checkbox" value="{{key}}" checked>
                <span data-i18n="{{name}}">{{name}}</span>
                {{#if preset}}
                    <span>&ndash;</span>
                    <small>{{preset}}</small>
                {{/if}}
            </label>
        {{/with}}
    {{/each}}
</div>