This commit is contained in:
Ross
2021-08-09 12:05:32 +00:00
parent cf5de53a1c
commit 82b6e4854a
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -514,7 +514,7 @@ td.user-answer-score-2::after {
} }
.published-icon.published { .published-icon.published {
border: 1px solid green; border: 1px solid purple;
color: green; color: purple;
opacity: 100%; opacity: 100%;
} }
+2 -2
View File
@@ -8,7 +8,7 @@
{% for exam in exams %} {% for exam in exams %}
{% if exam.active %} {% if exam.active %}
<li> <li>
<a href="{% url 'physics:exam_overview' pk=exam.pk %}">{{exam.name}}</a> <a href="{% url 'physics:exam_scores_cid' pk=exam.pk %}">(scores)</a> <span class="published-icon {% if exam.publish_results %}published{% endif %}">Published</span> <a href="{% url 'physics:exam_overview' pk=exam.pk %}">{{exam.name}}</a> <a href="{% url 'physics:exam_scores_cid' pk=exam.pk %}">(scores)</a> <span class="published-icon {% if exam.publish_results %}published{% endif %}">Results Published</span>
</li> </li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
@@ -19,7 +19,7 @@
{% for exam in exams %} {% for exam in exams %}
{% if not exam.active %} {% if not exam.active %}
<li> <li>
<a href="{% url 'physics:exam_overview' pk=exam.pk %}">{{exam.name}}</a> <a href="{% url 'physics:exam_scores_cid' pk=exam.pk %}">(scores)</a> <span class="published-icon {% if exam.publish_results %}published{% endif %}">Published</span> <a href="{% url 'physics:exam_overview' pk=exam.pk %}">{{exam.name}}</a> <a href="{% url 'physics:exam_scores_cid' pk=exam.pk %}">(scores)</a> <span class="published-icon {% if exam.publish_results %}published{% endif %}">Results Published</span>
</li> </li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
+2 -2
View File
@@ -514,7 +514,7 @@ td.user-answer-score-2::after {
} }
.published-icon.published { .published-icon.published {
border: 1px solid green; border: 1px solid purple;
color: green; color: purple;
opacity: 100%; opacity: 100%;
} }