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/incorrect.eta
2023-03-12 17:29:07 +02:00

17 lines
344 B
Plaintext

<% layout("./layouts/layout.eta") %>
<h1>Your answer is not correct.</h1>
<h2>Correct answer:</h2>
<% if (it.data && it.data.length > 0) { %>
<ul>
<% it.data.forEach(item => { %>
<li><%= item.option_text %></li>
<% }); %>
</ul>
<% } else { %>
<p>Correct options are not found.</p>
<% } %>
<a href="/quiz/<%= it.tId %>">Next question</a>