{% extends 'psu_base.html' %} {% load base_taglib %} {%block title%}Downtime Console{%endblock%} {%block scripts%}{%datatables%}{%endblock%} {% block pagecontent %}

Downtimes

{%if not active_downtime%}

Create a Downtime

{%csrf_token%}




{%endif%} {% for dt in downtimes%} {% endfor %}
When From Until Reason Action
{{dt.from_date_description}} {{dt.from_date_display}} {{dt.until_date_display}} {{dt.reason}} {%if dt.can_delete%} {%fa fa-trash-o text-danger title="Delete"%} {%elif dt.can_end%} {%fa fa-stop text-danger title="End Downtime"%} {%endif%}
{% endblock %}