{% extends "oats/base.html" %} {% load humanize %} {% block title %} All Tickets {% endblock %} {% block css %} {% endblock %} {% block javascript %} {% endblock %} {% block content %}
This page hasn't been refreshed in a while.
Press F5 to refresh.
{% if messages %} {% for message in messages %} {{ message }}

{% endfor %} {% endif %} {% if phone_count > 0 %}

There {{ phone_count|pluralize:"is,are" }} {{ phone_count|apnumber }} open phone message{{ phone_count|pluralize }}.

{% endif %} {% if workorder_list %} {% with workorder_list as object_list %}

Current Work Orders:

{% include "oats/workorder_table.html" %} {% endwith %} {% else %}

There are no current work orders

{% endif %} {% if inoffice_list %} {% with inoffice_list as object_list %}

Open In-office Computers:

{% include "oats/inoffice_table.html" %} {% endwith %} {% else %}

There are no in-office computers

{% endif %} {% endblock %}