{% extends "base.html" %} {% block title %}Work Orders — Timmy Time{% endblock %} {% block content %}

WORK ORDERS

SUBMIT · REVIEW · EXECUTE
{{ pending_count }} PENDING

INCOMING QUEUE

{% if pending %} {% for wo in pending %} {% include "partials/work_order_card.html" %} {% endfor %} {% else %}
No pending work orders. Use the + NEW button or the API to submit one.
{% endif %}

ACTIVE WORK

{% if active %} {% for wo in active %} {% include "partials/work_order_card.html" %} {% endfor %} {% else %}
No work orders currently in progress.
{% endif %}

HISTORY

{% if completed or rejected %} {% for wo in completed %} {% include "partials/work_order_card.html" %} {% endfor %} {% for wo in rejected %} {% include "partials/work_order_card.html" %} {% endfor %} {% else %}
No completed or rejected work orders yet.
{% endif %}
{% endblock %}