{% set title = g.course.name + ' (edit topics)' %} {% extends "base.html" %} {% block body %}

{{ g.course.name }}: Edit topics

RankIdentTitleTypeDeadlinePoints {% if g.course.student_grading %}Student graders{% endif %} {% for t in topics %} {% if t.public %} {% set cls = "told" %} {% else %} {% set cls = "thidden" %} {% endif %}
{{ t.rank }} {{ t.ident or "" }} {% if t.ident %} {{ t.title }} {% else %} {{ t.title }} {% endif %} {{ {'H': 'heading', 'T': 'task', 'A': 'award', 'D': 'discuss' }.get(t.type, t.type) }} {{ t.deadline|reltimeformat }} {{ t.max_points if t.max_points != None else "" }} {% if g.course.student_grading %} {% if t.type == 'T' %}Assign{% endif %} {% endif %} {% endfor %}
New topic Back to the course
{% endblock %}