This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
quizzy-application/drill-and-practice/views/quiz.eta
2023-03-10 16:41:57 +02:00

14 lines
473 B
Plaintext

<% layout("./layouts/layout.eta") %>
<h2>Question: <%= it.question %></h2>
<h2>Answer options:</h2>
<% if (it.answers && it.answers.length > 0) { %>
<% it.answers.forEach(answer => { %>
<p><form action="/quiz/<%= it.topicId %>/questions/<%= it.questionId %>/options/<%= answer.id %>" method="POST">
<%= answer.option_text %><input type="submit" value="Choose" />
</form></p>
<% }); %>
<% } else { %>
<p>There is no answer option for this question.</p>
<% } %>