52 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <ion-header>
 | |
|     <ion-toolbar>
 | |
|         <ion-buttons slot="start">
 | |
|             <ion-back-button [text]="'core.back' | translate" />
 | |
|         </ion-buttons>
 | |
|         <ion-title>
 | |
|             <h1 *ngIf="attempt">{{ attempt.fullname }}</h1>
 | |
|             <h1 *ngIf="anonAttempt">{{ 'addon.mod_feedback.anonymous_user' | translate }}</h1>
 | |
|         </ion-title>
 | |
|     </ion-toolbar>
 | |
| </ion-header>
 | |
| <ion-content [core-swipe-navigation]="attempts">
 | |
|     <core-loading [hideUntil]="loaded">
 | |
|         <ion-list class="ion-no-margin" *ngIf="attempt || anonAttempt">
 | |
|             <ion-item *ngIf="attempt" class="ion-text-wrap" core-user-link [userId]="attempt.userid"
 | |
|                 [attr.aria-label]="'core.user.viewprofile' | translate" [courseId]="attempt.courseid">
 | |
|                 <core-user-avatar [user]="attempt" slot="start" [linkProfile]="false" />
 | |
|                 <ion-label>
 | |
|                     <h2>{{attempt.fullname}}</h2>
 | |
|                     <p *ngIf="attempt.timemodified">{{attempt.timemodified * 1000 | coreFormatDate }}</p>
 | |
|                 </ion-label>
 | |
|             </ion-item>
 | |
| 
 | |
|             <ion-item class="ion-text-wrap" *ngIf="anonAttempt">
 | |
|                 <core-user-avatar [linkProfile]="false" slot="start" />
 | |
|                 <ion-label>
 | |
|                     <h2>{{ 'addon.mod_feedback.anonymous_user' |translate }}</h2>
 | |
|                     <p>{{ 'addon.mod_feedback.response_nr' | translate }}: {{anonAttempt.number}}</p>
 | |
|                 </ion-label>
 | |
|             </ion-item>
 | |
|             <ng-container *ngIf="items && items.length">
 | |
|                 <ng-container *ngFor="let item of items">
 | |
|                     <core-spacer *ngIf="item.typ === 'pagebreak'" />
 | |
|                     <ion-item class="ion-text-wrap" *ngIf="item.typ !== 'pagebreak'" [color]="item.dependitem > 0 ? 'light' : ''">
 | |
|                         <ion-label>
 | |
|                             <p class="item-heading" *ngIf="item.name" [core-mark-required]="item.required">
 | |
|                                 <span *ngIf="feedback!.autonumbering && item.itemnumber">{{item.itemnumber}}. </span>
 | |
|                                 <core-format-text [component]="component" [componentId]="cmId" [text]="item.name" contextLevel="module"
 | |
|                                     [contextInstanceId]="cmId" [courseId]="courseId" />
 | |
|                             </p>
 | |
|                             <p *ngIf="item.submittedValue">
 | |
|                                 <core-format-text [component]="component" [componentId]="cmId" [text]="item.submittedValue"
 | |
|                                     contextLevel="module" [contextInstanceId]="cmId" [courseId]="courseId" />
 | |
|                             </p>
 | |
|                         </ion-label>
 | |
|                     </ion-item>
 | |
|                 </ng-container>
 | |
|             </ng-container>
 | |
|         </ion-list>
 | |
|     </core-loading>
 | |
| </ion-content>
 |