{% extends "base.html" %} {% block title %}Payments - Detailed · Delphi Database{% endblock %} {% block content %}
{% if groups and groups|length > 0 %} {% for group in groups %}| File # | Client | Type | Description | Amount |
|---|---|---|---|---|
| {{ p.case.file_no if p.case else '' }} | {% set client = p.case.client if p.case else None %}{% if client %}{{ client.last_name }}, {{ client.first_name }}{% else %}—{% endif %} | {{ p.payment_type or '' }} | {{ p.description or '' }} | ${{ '%.2f'|format(p.amount or 0) }} |