mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
6 lines
325 B
HTML
6 lines
325 B
HTML
<div class="mb-3 form-check">
|
|
<input type="checkbox" class="form-check-input" [id]="inputId" [(ngModel)]="value" (change)="onChange(value)" (blur)="onTouched()" [disabled]="disabled">
|
|
<label class="form-check-label" [for]="inputId">{{title}}</label>
|
|
<div *ngIf="hint" class="form-text text-muted">{{hint}}</div>
|
|
</div>
|