20 lines
1.0 KiB
HTML
Raw Normal View History

<ion-card>
<a ion-item text-wrap class="item-course" (click)="openCourse(course)" [title]="course.fullname">
<h2><core-format-text [text]="course.fullname"></core-format-text></h2>
<core-progress-bar *ngIf="course.progress !== false" [progress]="course.progress"></core-progress-bar>
<!-- @todo: Download button. -->
<!-- <i *ngIf="actionsLoaded" class="icon ion-android-more-vertical mm-animate-show-hide" ng-click="showCourseActions($event)"></i>
<ion-spinner *ngIf="!actionsLoaded" class="mm-animate-show-hide"></ion-spinner> -->
<!-- Download course spinner. -->
<!-- <ion-spinner *ngIf="prefetchCourseIcon == 'spinner'" class="mm-course-download-spinner"></ion-spinner> -->
</a>
<ion-item text-wrap *ngIf="showSummary && course.summary">
<p>
<summary>
<core-format-text [text]="course.summary" maxHeight="60"></core-format-text>
</summary>
</p>
</ion-item>
<ng-content></ng-content>
</ion-card>