/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
extensions/visualizations/oppia-visualization-enumerated-frequency-table.directive.html
27 строк
923 B
Shivam Chaudhary
Fix part of #9749: Migration of improvements-tab, statistics-tab, feedback-tab in Angular (#16060)
07 окт 2022, 18:18
Не верифицирован
07 окт 2022, 18:18
8237341
Код
Авторство
О чём код?
<strong>{{ options.title }}</strong> <table class="table"> <tr> <th>{{ options.column_headers[0] }}</th> <th>{{ options.column_headers[1] }}</th> <th *ngIf="addressedInfoIsSupported">Addressed specifically?</th> </tr> <tr *ngFor="let row of data; index as index"> <td> <a class="answer-rank" (click)="toggleAnswerVisibility(index)">Answer Set #{{ index + 1 }}</a> <table class="item table item-table" [hidden]="!answerVisible[index]"> <tr *ngFor="let item of row.answer"> <td class="answers"> <oppia-rte-output-display [rteString]="item"> </oppia-rte-output-display> </td> </tr> </table> </td> <td class="answers">{{ row.frequency }}</td> <td *ngIf="addressedInfoIsSupported"> <span *ngIf="row.isAddressed">Yes</span> <span *ngIf="!row.isAddressed">No</span> </td> </tr> </table>