/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
extensions/visualizations/oppia-visualization-frequency-table.directive.html
15 строк
457 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>{{ row.answer }}</td> <td>{{ row.frequency }}</td> <td *ngIf="addressedInfoIsSupported"> {{ row.isAddressed ? 'Yes' : 'No' }} </td> </tr> </table>