{% extends "base.html" %} {% block title %} » DC Contracts » {{bill.batch.contract.name}} » Batches » {{bill.batch.reference}} » {{bill.reference}} {% endblock %} {% block nav %} DC Contracts » {{bill.batch.contract.name}} » Batches » {{bill.batch.reference}} » Bill {{bill.id}} [edit] {% endblock %} {% block content %}
Supply Reference Account Issue Date From To kWh Net VAT Gross Type Check
Supply {{bill.reference}} {{bill.account}} {{bill.issue_date.date_format}} {{bill.start_date|date_format }} {{bill.finish_date|date_format }} {{bill.kwh}} {{bill.net}} {{bill.vat}} {{bill.gross}} {{bill.bill_type.code}} Check
{% for element in bill.elements %} {% endfor %}
Elements [add]
Name Start Date Finish Date Net Breakdown
{{element.name}} {{element.start_date|date_format}} {{element.finish_date|date_format}} {{element.net}}
{{element.breakdown}}

Breakdown

{%- for line in raw_lines -%}
		{{line}}
{%- endfor -%}
{% for col in column_list %} {% endfor %} {% for row in row_list %} {% for col in column_list %} {% endfor %} {% endfor %}
element{{col}}
{{row}}{{grid[row][col]}}

Raw Lines

{% if 'raw-lines' in bill.bd %}
{% for line in bill.bd['raw-lines'] %}
{{line}}
			{%- endfor %}
{% endif %}

Raw Breakdown

{{bill.breakdown}}
{% endblock %}