You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- <section class="page-container">
- <header class="main-header">
- <div class="counter">
- <span> 0 </span>/{{ questionCount }}
- </div>
-
- <div class="duration">
- <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/information.svg"></svg-icon>
- {{ timeCounter.hours }} : {{ timeCounter.minutes }} : {{ timeCounter.seconds }}
- </div>
-
- <button> <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/information.svg"></svg-icon> </button>
- </header>
-
- <ul class="category-list" *ngFor="let category of testData.categoryList; let i = index;">
- <header>
- <h5> {{ category.heading }} </h5>
- <span class="count"> {{ category.unitValue }} x {{ category.questions.length }} = {{ category.unitValue * category.questions.length }} </span>
- </header>
- <li *ngFor="let question of category.questions; let j = index;">
- <app-question [question]="question" [index]="j + 1"></app-question>
- </li>
- </ul>
- </section>
|