{% extends "base.html" %} {% block title %}Dashboard · Delphi Database{% endblock %} {% block content %}
| 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. | ||||||