{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
{{ open_count }}
Open Tickets
{{ active_count }}
In Progress
{{ resolved_count }}
Resolved
My Recent Tickets New Ticket
{% if my_tickets %} {% for t in my_tickets %} {% endfor %}
Ticket # Title Status Priority Date
{{ t.ticket_number }} {{ t.title[:45] }}{% if t.title|length > 45 %}…{% endif %} {{ t.status.replace('_',' ').upper() }} {{ t.priority.upper() }} {{ t.created_at | localtime("%b %d") }}
{% else %} {% endif %}
Quick Actions
Knowledge Base View all →
{% if articles %} {% for art in articles %} {{ art.title[:55] }} {{ art.view_count }} views {% endfor %} {% else %}
No articles yet.
{% endif %}
{% endblock %}