Skip to content

Instantly share code, notes, and snippets.

@optikalefx
Created July 12, 2012 22:30
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/3101504 to your computer and use it in GitHub Desktop.
Save optikalefx/3101504 to your computer and use it in GitHub Desktop.
{{#each quiz_questions}}
<div class="quiz-question-text">{{@id}}. {{value.quiz_question}}</div>
<div class="quiz-question-choice">
{{#each value.quiz_question_answers}}
<label class="quiz-question-label">
<input type="radio" name="quiz-question-id-{{../@key}}" class="quiz-question-radio" />
{{value}}
</label>
{{/each}}
</div>
{{/each}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment