MOBILE-2588 assign: Fix attempt status and start new in grading
parent
b9f79efcf3
commit
0f03d5098c
|
@ -196,16 +196,18 @@
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|
||||||
<!-- Attempt status. -->
|
<!-- Attempt status. -->
|
||||||
<ion-item text-wrap *ngIf="isGrading && assign.attemptreopenmethod != attemptReopenMethodNone">
|
<ng-container *ngIf="isGrading && assign.attemptreopenmethod != attemptReopenMethodNone">
|
||||||
|
<ion-item text-wrap >
|
||||||
<h2>{{ 'addon.mod_assign.attemptsettings' | translate }}</h2>
|
<h2>{{ 'addon.mod_assign.attemptsettings' | translate }}</h2>
|
||||||
<p *ngIf="assign.maxattempts == unlimitedAttempts">{{ 'addon.mod_assign.outof' | translate : {'$a': {'current': currentAttempt, 'total': maxAttemptsText} } }}</p>
|
<p *ngIf="assign.maxattempts == unlimitedAttempts">{{ 'addon.mod_assign.outof' | translate : {'$a': {'current': currentAttempt, 'total': maxAttemptsText} } }}</p>
|
||||||
<p *ngIf="assign.maxattempts != unlimitedAttempts">{{ 'addon.mod_assign.outof' | translate : {'$a': {'current': currentAttempt, 'total': assign.maxattempts} } }}</p>
|
<p *ngIf="assign.maxattempts != unlimitedAttempts">{{ 'addon.mod_assign.outof' | translate : {'$a': {'current': currentAttempt, 'total': assign.maxattempts} } }}</p>
|
||||||
<p>{{ 'addon.mod_assign.attemptreopenmethod' | translate }}: {{ 'addon.mod_assign.attemptreopenmethod_' + assign.attemptreopenmethod | translate }}</p>
|
<p>{{ 'addon.mod_assign.attemptreopenmethod' | translate }}: {{ 'addon.mod_assign.attemptreopenmethod_' + assign.attemptreopenmethod | translate }}</p>
|
||||||
<ng-container *ngIf="canSaveGrades && allowAddAttempt" >
|
</ion-item>
|
||||||
|
<ion-item *ngIf="canSaveGrades && allowAddAttempt" >
|
||||||
<ion-label>{{ 'addon.mod_assign.addattempt' | translate }}</ion-label>
|
<ion-label>{{ 'addon.mod_assign.addattempt' | translate }}</ion-label>
|
||||||
<ion-toggle [(ngModel)]="grade.addAttempt"></ion-toggle>
|
<ion-toggle [(ngModel)]="grade.addAttempt"></ion-toggle>
|
||||||
</ng-container>
|
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<!-- Data about the grader (teacher who graded). -->
|
<!-- Data about the grader (teacher who graded). -->
|
||||||
<a ion-item text-wrap *ngIf="grader" (click)="openUserProfile(grader.id)" [title]="grader.fullname" detail-push>
|
<a ion-item text-wrap *ngIf="grader" (click)="openUserProfile(grader.id)" [title]="grader.fullname" detail-push>
|
||||||
|
|
Loading…
Reference in New Issue