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

Downtimes

{%if not active_base_downtime%}
{%csrf_token%}

Create a Downtime

Downtime affects only {%app_name%}






{%endif%}

{%app_name%} Downtimes

{% for dt in downtimes%} {% endfor %}
When From Until Reason Action
{%if dt.is_past%} {%fa fa-history fa-fw text-muted title="Past Downtime"%} {%elif dt.is_future%} {%fa fa-clock-o fa-fw text-info title="Future Downtime"%} {%else%} {%fa fa-star fa-fw text-danger title="Active Downtime"%} {%endif%} {{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%}



Banner Downtimes

{% for dt in banner_downtimes%} {% endfor %} {% endblock %}