quizzer
Version:
Quizzer is a webserver for collaborative writing lab support. Based on a _fail early, fail often? approach to written language, the tool is particularly suited to second-language learners. The workflow (essay - error - quiz - exam) treats mistakes as an o
87 lines (86 loc) • 4.32 kB
HTML
<html>
<head>
<title class="i18n" name="content-quizzer-admin">Quizzer Admin</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/simple-grid.css"/>
<link rel="stylesheet" type="text/css" href="css/local.css"/>
<link rel="stylesheet" type="text/css" href="css/admin-quiz.css"/>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({MMLorHTML: {prefer: {Firefox: "HTML"}}});
</script>
<script type="text/javascript" src="js/local.js"></script>
<script type="text/javascript" src="js/marked.js"></script>
<script type="text/javascript" src="js/admin-quiz.js"></script>
</head>
<body onLoad="i18n();buildQuestionList();">
<input class="i18n" name="value-edit-query" style="display:none;"/>
<input class="i18n" name="value-in-draft" style="display:none;"/>
<input class="i18n" name="value-responses-complete" style="display:none;"/>
<input class="i18n" name="value-responses-pending" style="display:none;"/>
<input class="i18n" name="value-quiz-sent" style="display:none;"/>
<input class="i18n" name="value-display-results" style="display:none;"/>
<input class="i18n" name="value-enter-rubric-here" style="display:none;"/>
<input class="i18n" name="value-enter-choice-here" style="display:none;"/>
<input class="i18n" name="value-rubric-empty" style="display:none;"/>
<input class="i18n" name="value-all-fields-must-have-content" style="display:none;"/>
<input class="i18n" name="value-choices-must-be-unique" style="display:none;"/>
<input class="i18n" name="value-which-is-correct" style="display:none;"/>
<iframe id="download-frame" style="display:none"></iframe>
<div class="grid">
<div class="col-1-1">
<h1 class="i18n" name="content-quizzer-admin">Quizzer Admin</h1>
<h2><span id="course-name">@@CLASS@@</span>: <span id="exam-title">@@QUIZ_LABEL@@</span></h2>
<div>
<input class="button i18n" name="value-back" type="button" value="Back" onclick="window.location = fixPath('/?admin=' + getParameterByName('admin') + '&page=class' + '&classid=' + getParameterByName('classid'))"/>
</div>
<div class="button-bold">
<input class="button i18n" name="value-send-quiz" id="send-quiz" type="button" value="Send Quiz" onclick="sendQuiz()"/>
<input class="button" id="quiz-done" type="button" value="Quiz Done" style="display:none;"/>
<input class="button i18n" name="value-download-exam" id="download-exam" type="button" value="Download Exam" onclick="downloadExam()" style="display:none;"/>
<input class="button i18n" name="value-mark-exam" id="mark-exam" type="button" value="Mark Exam" onclick="markExam()" style="display:none;"/>
</div>
<hr/>
<div class="questions-display" style="clear: both;">
<input class="button editing-button i18n" name="value-add-question-button" id="add-question-button" type="button" value="Add Question" onclick="addQuestion()"/>
</div>
<ol id="quiz-questions" class="questions-display">
</ol>
<div class="col-2-3 marking-display" style="display:none;">
<h2>
<span id="student-name">???</span>
</h2>
<div>
Bar code input:
<input id="string-input" type="text" size="15"/>
<div id="show-errors" style="visible:hidden;">
<div> </div>
</div>
</div>
<div class="col-1-3">
<table id="answer-column-1">
</table>
</div>
<div class="col-1-3">
<table id="answer-column-2">
</table>
</div>
<div class="col-1-3">
<table id="answer-column-3">
</table>
</div>
</div>
<div class="col-1-3 marking-display" style="display:none;">
<h2 class="i18n" name="content-scripts-marked">Scripts marked</h2>
<div class="col-1-1">
<table id="student-list" width="100%">
</table>
</div>
</div>
</div>
</div>
</div>
</body>
</html>