Vmeda.Online/src/addons/mod/assign/submission/onlinetext/component/addon-mod-assign-submission-onlinetext.html

36 lines
1.6 KiB
HTML
Raw Normal View History

2021-02-12 16:43:59 +01:00
<!-- Read only -->
<ion-item class="ion-text-wrap" *ngIf="!edit && text">
<ion-label>
<h2>{{ plugin.name }}</h2>
<p *ngIf="words">{{ 'addon.mod_assign.numwords' | translate: {'$a': words} }}</p>
<p>
<core-format-text [component]="component" [componentId]="assign.cmid" collapsible-item [text]="text" contextLevel="module"
[contextInstanceId]="assign.cmid" [courseId]="assign.course">
2021-02-12 16:43:59 +01:00
</core-format-text>
</p>
</ion-label>
</ion-item>
<!-- Edit -->
<div *ngIf="edit && loaded">
<ion-item-divider class="ion-text-wrap" [sticky]="true">
<ion-label>
<h2>{{ plugin.name }}</h2>
</ion-label>
2021-02-12 16:43:59 +01:00
</ion-item-divider>
<ion-item class="ion-text-wrap" *ngIf="wordLimitEnabled && words >= 0">
<ion-label>
2023-02-13 12:09:10 +01:00
<p class="item-heading">{{ 'addon.mod_assign.wordlimit' | translate }}</p>
2021-02-12 16:43:59 +01:00
<p>{{ 'core.numwords' | translate: {'$a': words + ' / ' + wordLimit} }}</p>
</ion-label>
</ion-item>
<ion-item class="ion-text-wrap">
<ion-label class="sr-only">{{ plugin.name }}</ion-label>
<core-rich-text-editor [control]="control" [placeholder]="plugin.name" name="onlinetext_editor_text"
(contentChanged)="onChange($event)" [component]="component" [componentId]="assign.cmid" [autoSave]="true" contextLevel="module"
[contextInstanceId]="assign.cmid" elementId="onlinetext_editor"
[draftExtraParams]="{userid: currentUserId, action: 'editsubmission'}">
</core-rich-text-editor>
2021-02-12 16:43:59 +01:00
</ion-item>
</div>