.
This commit is contained in:
@@ -224,7 +224,11 @@ button a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#question-mark-list a {
|
#question-mark-list a {
|
||||||
color: #bbe1fa
|
color: darkgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
#question-mark-list .unmarked a {
|
||||||
|
color: purple;
|
||||||
}
|
}
|
||||||
|
|
||||||
#question-mark-list li {
|
#question-mark-list li {
|
||||||
|
|||||||
@@ -12,7 +12,9 @@
|
|||||||
|
|
||||||
<ul id="question-mark-list">
|
<ul id="question-mark-list">
|
||||||
{% for question in questions.all %}
|
{% for question in questions.all %}
|
||||||
<li data-markcount={{question.get_unmarked_answer_count}}><a href="{% url 'longs:mark' pk=exam.pk sk=forloop.counter0 %}">Question {{forloop.counter }}:
|
<li data-markcount={{question.get_unmarked_answer_count}}
|
||||||
|
{% if question.get_unmarked_answer_count %}class="unmarked" {% endif %}
|
||||||
|
><a href="{% url 'longs:mark' pk=exam.pk sk=forloop.counter0 %}">Question {{forloop.counter }}:
|
||||||
{{ question }}</a><br /> Answers to mark: {{question.get_unmarked_answer_count}}</li>
|
{{ question }}</a><br /> Answers to mark: {{question.get_unmarked_answer_count}}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user