mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-24 02:02:23 -04:00
5 lines
334 B
HTML
5 lines
334 B
HTML
<div class="form-group 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>
|
|
<small *ngIf="hint" class="form-text text-muted">{{hint}}</small>
|
|
</div> |