42 lines
874 B
HTML
42 lines
874 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<h2>Invoice #{{ inv.id }}</h2>
|
|
|
|
<p>
|
|
<strong>Client:</strong> {{ inv.client.name if inv.client else "" }}<br>
|
|
<strong>Status:</strong> {{ inv.status }}<br>
|
|
<strong>Total:</strong> ${{ inv.total }}<br>
|
|
<strong>Paid:</strong> ${{ inv.amount_paid }}<br>
|
|
</p>
|
|
|
|
<h3>Lines</h3>
|
|
|
|
<table border="1" cellpadding="6">
|
|
<tr>
|
|
<th>Description</th>
|
|
<th>Qty</th>
|
|
<th>Unit Price</th>
|
|
<th>Line Total</th>
|
|
</tr>
|
|
|
|
{% for l in inv.lines %}
|
|
<tr>
|
|
<td>{{ l.description }}</td>
|
|
<td>{{ l.qty }}</td>
|
|
<td>${{ l.unit_price }}</td>
|
|
<td>${{ (l.qty or 0) * (l.unit_price or 0) }}</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="4">No lines found.</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<p style="margin-top: 16px;">
|
|
<a href="{{ url_for('invoices.list_invoices') }}">Back to invoices</a>
|
|
</p>
|
|
|
|
{% endblock %}
|