Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118972134
question_table.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jun 23, 10:03
Size
772 B
Mime Type
text/html
Expires
Wed, Jun 25, 10:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26922651
Attached To
R7177 epiph
question_table.html
View Options
<template name="questionTable">
<table class="table questionTable">
<thead>
<tr>
<td></td>
{{#each question.choices}}
<td>
{{label}}
</td>
{{/each}}
</tr>
</thead>
<tbody>
{{#each question.subquestions}}
{{#let subquestionIndex = @index}}
<tr>
<td>
{{this}}
</td>
{{#each ../question.choices}}
<td>
{{#with answer=../../answer question=../../question subquestionIndex=subquestionIndex choice=.}}
<input data-subquestion_index={{subquestionIndex}} data-choice_value={{choice.value}} name={{subquestionIndex}} type={{type}} checked={{checked}} />
{{/with}}
</td>
{{/each}}
</tr>
{{/let}}
{{/each}}
</tbody>
</table>
</template>
Event Timeline
Log In to Comment