]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/forms/peertube-checkbox.component.html
Add categories and languages to about page
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / peertube-checkbox.component.html
CommitLineData
017c3dca 1<div class="root">
0f7fedc3 2 <label class="form-group-checkbox">
14e2014a 3 <input type="checkbox" [(ngModel)]="checked" (ngModelChange)="onModelChange()" [id]="inputName" [disabled]="disabled" />
0f7fedc3
C
4 <span role="checkbox" [attr.aria-checked]="checked"></span>
5 <span *ngIf="labelText">{{ labelText }}</span>
b4a929ac 6 <span *ngIf="labelHtml" [innerHTML]="labelHtml"></span>
0f7fedc3
C
7 </label>
8
8e8eb261 9 <my-help *ngIf="helpHtml" [tooltipPlacement]="helpPlacement" helpType="custom" i18n-customHtml [customHtml]="helpHtml"></my-help>
14e2014a 10</div>