source: Sources/frontend/src/app/subject/subject.component.html@ 8423429

Last change on this file since 8423429 was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 476 bytes
Line 
1<div class="parent-container" *ngIf="this.activeUser!!.userType == 'PROFESSOR'">
2 <h1>Сите Предмети</h1>
3 <form class="example-form" class="list">
4 <div *ngFor="let s of subjects">
5 <input type="radio" name="radio-btns" (change)="onChange({event : $event, id : {id : s.id}})">
6 <label>
7 <p class="card">
8 {{s?.name}}
9 </p>
10 </label>
11 </div>
12 </form>
13</div>
14<app-all-courses [subjectId]="subjectId"></app-all-courses>
Note: See TracBrowser for help on using the repository browser.