38 lines
705 B
HTML
38 lines
705 B
HTML
|
<!--- Sample template. Move elsewhere once it's ready to go. -->
|
||
|
|
||
|
{% extends "site_base.html" %}
|
||
|
{% block body %}
|
||
|
|
||
|
<h1>Invoice {{ invoice.id }}</h1>
|
||
|
|
||
|
<ul>
|
||
|
<li>Void: {{ invoice.void }}</li>
|
||
|
<li>Paid: {{ invoice.paid }}</li>
|
||
|
</ul>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Description</th>
|
||
|
<th>Quantity</th>
|
||
|
<th>Price/Unit</th>
|
||
|
<th>Total</th>
|
||
|
</tr>
|
||
|
{% for line_item in invoice.lineitem_set.all %}
|
||
|
<tr>
|
||
|
<td>{{line_item.description}}</td>
|
||
|
<td>{{line_item.quantity}}</td>
|
||
|
<td>{{line_item.price}}</td>
|
||
|
<td><!-- multiply --> FIXME</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
<tr>
|
||
|
<th>TOTAL</th>
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
<td>{{ invoice.value }}</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
|
||
|
{% endblock %}
|