2021-03-12 11:49:34 +01:00
|
|
|
<!-- Buttons to add to the header. -->
|
|
|
|
<core-navbar-buttons slot="end">
|
2022-02-17 13:58:10 +01:00
|
|
|
<ion-button fill="clear" (click)="openModuleSummary()" aria-haspopup="true" [attr.aria-label]="'core.info' | translate">
|
2023-03-14 14:08:09 +01:00
|
|
|
<ion-icon name="fas-circle-info" slot="icon-only" aria-hidden="true"></ion-icon>
|
2022-02-17 15:55:10 +01:00
|
|
|
</ion-button>
|
2021-03-12 11:49:34 +01:00
|
|
|
</core-navbar-buttons>
|
|
|
|
|
|
|
|
<!-- Content. -->
|
2022-03-25 10:16:12 +01:00
|
|
|
<core-loading [hideUntil]="!showLoading">
|
2021-05-07 10:09:31 +02:00
|
|
|
|
|
|
|
<!-- Activity info. -->
|
2022-02-14 17:07:46 +01:00
|
|
|
<core-course-module-info [module]="module" [description]="displayDescription && description" [component]="component"
|
2022-03-02 13:40:07 +01:00
|
|
|
[componentId]="componentId" [courseId]="courseId" (completionChanged)="onCompletionChange()">
|
2021-05-07 10:09:31 +02:00
|
|
|
</core-course-module-info>
|
|
|
|
|
2022-02-24 16:44:24 +01:00
|
|
|
<div collapsible-footer *ngIf="!showLoading" slot="fixed">
|
|
|
|
<div class="list-item-limited-width">
|
|
|
|
<ion-button expand="block" (click)="launch()" class="ion-margin ion-text-wrap">
|
|
|
|
{{ 'addon.mod_lti.launchactivity' | translate }}
|
2023-03-14 14:08:09 +01:00
|
|
|
<ion-icon name="fas-up-right-from-square" slot="end" aria-hidden="true"></ion-icon>
|
2022-02-24 16:44:24 +01:00
|
|
|
</ion-button>
|
|
|
|
</div>
|
|
|
|
|
2022-03-02 13:40:07 +01:00
|
|
|
<core-course-module-navigation [courseId]="courseId" [currentModuleId]="module.id">
|
2022-02-24 16:44:24 +01:00
|
|
|
</core-course-module-navigation>
|
2021-03-12 11:49:34 +01:00
|
|
|
</div>
|
|
|
|
</core-loading>
|