Saving work-in-progress of guided classification exercise.

This commit is contained in:
Arthur Barrett
2013-02-18 19:02:54 -05:00
parent 9fb80ec3df
commit 72d9c1d7d2
6 changed files with 271 additions and 29 deletions

View File

@@ -0,0 +1,23 @@
<div class="annotatable-problem" data-problem-id="${problem_id}">
<div class="annotatable-problem-header">
Classification Exercise:
<span class="annotatable-problem-index">
${problem_index} / ${total_problems}
</span>
</div>
<div class="annotatable-problem-body">
<div class="annotatable-problem-prompt">${problem_prompt}</div>
<ul class="annotatable-problem-tags">
% for tag in problem_tags:
<li>${tag.name}</li>
% endfor
</ul>
Explain the rationale for your tag selections:<br/>
<textarea></textarea>
</div>
<div class="annotatable-problem-footer">
<button class="button">Save</button>
<button class="button">Submit</button>
<a href="javascript:void(0);">Return to annotation</a>
</div>
</div>