<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> </div> <div cdkDropList> <app-course-item *ngFor="let course of courses" [course]="course" [status]="'complete'" cdkDrag></app-course-item> <p *ngIf="!courses" class="no-courses text-center semi-bold">No Courses Taken</p> </div> </mat-card>