{% extends "base.html" %}
{% block title %}
» MOP Contracts » {{bill.batch.contract.name}} »
Batches » {{bill.batch.reference}} » {{bill.reference}}
{% endblock %}
{% block nav %}
MOP Contracts »
{{bill.batch.contract.name}} »
Batches
»
{{bill.batch.reference}}
» {{bill.reference}}
[edit]
{% endblock %}
{% block content %}
Bill
Supply |
Reference |
Account |
Issue Date |
From |
To |
kWh |
Net |
VAT |
Gross |
Type |
Check |
Supply |
{{bill.reference}} |
{{bill.account}} |
{{bill.issue_date.strftime('%Y-%m-%d %H:%M')}} |
{{bill.start_date|hh_format }} |
{{bill.finish_date|hh_format }} |
{{bill.kwh}} |
{{bill.net}} |
{{bill.vat}} |
{{bill.gross}} |
{{bill.bill_type.code}}
|
Check |
Breakdown
{%- for line in raw_lines -%}
{{line}}
{%- endfor -%}
element |
{% for col in column_list %}
{{col}} |
{% endfor %}
{% for row in row_list %}
{{row}} |
{% for col in column_list %}
{{grid[row][col]}} |
{% endfor %}
{% endfor %}
{{bill.breakdown}}
{% endblock %}