{% extends "base.html" %} {% block title %}Dashboard · Delphi Database{% endblock %} {% block content %}

Cases

Clear
{% if total and total > 0 %} Showing {{ start_index }}–{{ end_index }} of {{ total }} {% else %} No results {% endif %}
{% if cases and cases|length > 0 %} {% for c in cases %} {% endfor %} {% else %} {% endif %}
File # Client Company Type Status Opened Actions
{{ c.file_no }} {% set client = c.client %} {% if client %} {{ client.last_name }}, {{ client.first_name }} {% else %} Unknown {% endif %} {{ client.company if client else '' }} {{ c.case_type or '' }} {% if c.status == 'active' %} Active {% elif c.status == 'closed' %} Closed {% else %} {{ c.status or 'n/a' }} {% endif %} {{ c.open_date.strftime('%Y-%m-%d') if c.open_date else '' }} View
No cases found.
{% if total_pages and total_pages > 1 %} {% endif %}
{% endblock %}