14 lines
452 B
HTML
14 lines
452 B
HTML
|
|
@if (bootstrap(); as bootstrap) {
|
||
|
|
<section class="editor-section-card">
|
||
|
|
<h2>{{ 'builder.header' | translate }}</h2>
|
||
|
|
<div class="editor-grid three toggles">
|
||
|
|
@for (item of items; track item.key) {
|
||
|
|
<label class="toggle-row">
|
||
|
|
<input type="checkbox" [checked]="isChecked(item.key)" (change)="toggle(item.key, $any($event.target).checked)" />
|
||
|
|
<span>{{ item.label | translate }}</span>
|
||
|
|
</label>
|
||
|
|
}
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
}
|