{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
| Ticket # | Title | Progress | Priority | Date |
|---|---|---|---|---|
| {{ t.ticket_number }} |
{{ t.title[:40] }}{% if t.title|length > 40 %}…{% endif %}
{% if is_overdue %}
Overdue
{% endif %}
{% if t.priority == 'critical' %}
Critical
{% elif t.priority == 'high' %}
High
{% endif %}
|
{{ t.status.replace('_',' ').title() }}
{% for i in range(4) %}
{% endfor %}
|
{{ t.priority.upper() }} | {{ t.created_at | localtime("%b %d") }} |