{% extends "base.html" %} {% block title %}Task Queue - Timmy Time{% endblock %} {% block extra_styles %} {% endblock %} {% block content %}
TASK QUEUE
// PENDING APPROVAL {{ pending_count }}
{% if pending %} {% for task in pending %} {% include "partials/task_card.html" %} {% endfor %} {% else %}
No pending tasks
{% endif %}
// ACTIVE {{ active | length }}
{% if active %} {% for task in active %} {% include "partials/task_card.html" %} {% endfor %} {% else %}
No active tasks
{% endif %}
// COMPLETED {{ completed | length }}
{% if completed %} {% for task in completed %} {% include "partials/task_card.html" %} {% endfor %} {% else %}
No completed tasks yet
{% endif %}

Create Task

{% endblock %}