Skip to content
Snippets Groups Projects
term-container.component.html 458 B
Newer Older
<mat-card class="term-container">
    <div fxLayout="row" fxLayoutAlign="space-between stretch">
        <h2>{{ term.termCode | getTermDescription }}</h2><p class="text-right semi-bold credits">Credits: 13</p>
        <app-course-item *ngFor="let course of courses" [course]="course" [status]="'complete'"></app-course-item>
        <p *ngIf="!courses" class="no-courses text-center semi-bold">No Courses Taken</p>
    </div>
</mat-card>