Page MenuHomec4science

question_table.html
No OneTemporary

File Metadata

Created
Tue, Mar 4, 05:53

question_table.html

<template name="questionTable">
<table class="table question-table">
<thead>
<tr>
<td></td>
{{#each question.choices}}
<td>
{{label}}
</td>
{{/each}}
</tr>
</thead>
<tbody>
{{#each question.subquestions}}
<tr>
<td>
{{label}}
</td>
{{#each ../question.choices}}
<td>
{{#with answer=../../answer question=../../question subquestion=.. choice=. readonly=../../readonly}}
<input data-subquestion_code={{subquestion.code}} data-choice_variable={{choice.variable}} data-choice_value={{choice.value}} name={{subquestion.code}} type={{type}} checked={{checked}} {{disabled}}/>
{{/with}}
</td>
{{/each}}
</tr>
{{/each}}
</tbody>
</table>
</template>

Event Timeline