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-10 12:43:41 +02:00

16 lines
313 B
Plaintext

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