Skip to content

Instantly share code, notes, and snippets.

@optikalefx
Created July 12, 2012 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save optikalefx/3099907 to your computer and use it in GitHub Desktop.
Save optikalefx/3099907 to your computer and use it in GitHub Desktop.
{{#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