Admin
<mat-icon class="icon-size-5 text-secondary" [svgIcon]="'heroicons_solid:chevron-right'"> Questions

<span *ngIf="!viewQuestionsDetails">View Questions <span *ngIf=" activeQuestions && activeQuestions.length > 0 && viewQuestionsDetails ">Topic Name: {{ activeQuestions[0].topicName }}

<app-filter *ngIf="showFilter" [data]="questionsList" [columns]="filterColummn" (outputData)="GetFilteredData($event)">
{{ item[0].topicName }}
{{ item.length }} questions
No Question Mesure
<mat-expansion-panel *ngFor="let element of activeQuestions" class="mb-0" style="border-radius: 0 !important"> {{ element.index }} <span class="mat-cell" [innerHTML]="element.questionText"> <mat-icon class="cursor-pointer" svgIcon="heroicons_outline:pencil-alt" (click)="editQuestions(element)"> <mat-icon class="cursor-pointer" svgIcon="heroicons_outline:trash" (click)="deleteQuestions(element)">

Équation : {{ element.equation }}

Min 1: {{ element.min1 }}

Max 1: {{ element.max1 }}

Étape 1 : {{ element.step1 }}

Min 2: {{ element.min2 }}

Max 2: {{ element.max2 }}

Étape 2 : {{ element.step2 }}

Dernière modification : {{ element.updatedAt | date : 'MM/dd/yyyy' }} {{ element.userName ? 'by ' + element.userName : '' }}