Created
July 12, 2012 18:22
-
-
Save optikalefx/3099907 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{#each_object quiz_questions}} | |
<div class="quiz-question-text">{{key}}. {{value.quiz_question}}</div> | |
<div class="quiz-question-choice"> | |
{{#each_object value.quiz_question_answers}} | |
<label class="quiz-question-label"> | |
<input type="radio" name="quiz-question-id-{{key}}" class="quiz-question-radio" /> | |
{{value}} | |
</label> | |
{{/each_object}} | |
</div> | |
{{/each_object}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment