Last change
on this file was 8423429, checked in by AngelNasev <angel.nasev@…>, 17 months ago |
Add backend and frontend projects
|
-
Property mode
set to
100644
|
File size:
631 bytes
|
Line | |
---|
1 | <div class="parent-container">
|
---|
2 | <h1>Мои курсеви</h1>
|
---|
3 | <div class="container" *ngIf="this.activeUser?.userType=='STUDENT'">
|
---|
4 | <a class="card" *ngFor="let s of studentCourses"
|
---|
5 | routerLink="/details/{{s?.course?.id}}">
|
---|
6 | Курс: {{s?.course?.name}}
|
---|
7 | </a>
|
---|
8 | </div>
|
---|
9 | <div class="container" *ngIf="this.activeUser?.userType=='PROFESSOR'">
|
---|
10 | <div class="card" *ngFor="let s of professorCourses">
|
---|
11 | <a
|
---|
12 | (click)="saveCourseAsCurrent(s?.course?.id)"
|
---|
13 | routerLink="/details/{{s?.course?.id}}">
|
---|
14 | Курс:
|
---|
15 | <br>
|
---|
16 | {{s?.course?.name}}
|
---|
17 | </a>
|
---|
18 | </div>
|
---|
19 | </div>
|
---|
20 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.