h5p-question-set/views/questionset.ejs

32 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-01-08 13:04:15 +01:00
<div class="questionset">
2013-01-16 13:42:51 +01:00
<% if (introPage.showIntroPage) { %>
<div class="intro-page">
<div class="title"><%= introPage.title %></div>
<div class="introduction"><%= introPage.introduction %></div>
<div class="buttons"><button id="qs-startbutton"><%= introPage.startButtonText %></button></div>
</div>
<%} %>
<div class="title"><%= title %></div>
2013-01-08 13:04:15 +01:00
<% for (var i=0; i<questions.length; i++) { %>
<div class="question-container" id="q-<%= i %>">
<div><%= questions[i].machineName %></div>
2013-01-08 13:04:15 +01:00
</div>
<% } %>
<div class="question-footer">
<div class="progress">
<% if (progressType == "dots") { %>
<div class="dots-container">
<% for (var i=0; i<questions.length; i++) { %>
<span class="progress-dot unanswered" id="qdot-<%= i %>"></span>
<%} %>
</div>
2013-01-08 13:04:15 +01:00
<% } else if (progressType == "textual") { %>
<span class="progress-text"></span>
2013-01-08 13:04:15 +01:00
<% } %>
</div>
<button class="prev button"><%= texts.prevButton %></button>
<button class="next button"><%= texts.nextButton %></button>
<button class="finish button"><%= texts.finishButton %></button>
2013-01-08 13:04:15 +01:00
</div>
</div>