{% extends 'base.html' %} {% load humanize %} {% block extrahead %} {% load static %} {% endblock %} {% block title %}Maintenance{% endblock %} {% block body %}

Maintenance

{% for task in pending_tasks %} {% endfor %}
Urgency Severity Tool Category Last updated Created Description
{{ task.get_urgency_display }} {% if task.force_shutdown %} {% else %} {% endif %} {{ task.tool.name }} {{ task.problem_category|default_if_none:"" }} {% if task.last_updated and task.last_updated_by %}{{ task.last_updated|naturaltime }} by {{ task.last_updated_by.first_name }}{% endif %} {{ task.creation_time|naturaltime }} {{ task.problem_description }}
{% for task in closed_tasks %} {% endfor %}
Urgency Severity Tool Category Created Resolved Description
{{ task.get_urgency_display }} {% if task.force_shutdown %} {% else %} {% endif %} {{ task.tool.name }} {{ task.problem_category|default_if_none:"" }} {{ task.creation_time }} {{ task.resolution_time }} {{ task.problem_description }}
{% endblock %}