Page MenuHomec4science

question_table_polar.html
No OneTemporary

File Metadata

Created
Tue, Jul 23, 17:13

question_table_polar.html

<template name="questionTablePolar">
<table class="table question-table question-table-polar">
<thead>
<tr>
<td></td>
{{#each question.choices}}
<td>
</td>
{{/each}}
</tr>
</thead>
<tbody>
{{#each question.subquestions}}
<tr>
<td>
{{minLabel}}
</td>
{{#each ../question.choices}}
<td>
{{#with answer=../../answer question=../../question subquestion=.. choice=. readonly=../../readonly}}
{{> questionTableInput}}
<p>{{choice.label}}</p>
{{/with}}
</td>
{{/each}}
<td>
{{maxLabel}}
</td>
</tr>
{{/each}}
</tbody>
</table>
</template>

Event Timeline