{% extends "base.html" %} {% block title %}Assignments{% endblock %} {% block path %}→ assignments{% endblock %} {% block content %}
{% for i in assignments %}
{{ i.class_name}} {{ i.name }} {% if i.status %} {% autoescape false %}{{ i.status }}{% endautoescape %} {% endif %}
{% autoescape false %}due {{ create_time_element(i.due) }} {% if i.due_cutoff %}(cutoff {{ create_time_element(i.due_cutoff) }}){% endif %}{% endautoescape %}
{% endfor %} {% if not assignments and not hidden_assignments %}
You do not have, and have never had, any assignments due.
{% elif not assignments %}
You do not have any assignments due.
{% endif %} {% if hidden_assignments > 0 %} Show All Assignments ({{ hidden_assignments }} hidden) {% endif %} {% if hidden_assignments < 0 %} Showing All Assignments (Show Less) {% endif %}
{% endblock %}