{% extends "base.html" %}
{% block title %}
» Connection Agreements » {{ca.id}} {{ca.start_date|date_format}}
{% endblock %}
{% block inside_head %}
{% endblock %}
{% block nav %}
Connection Agreements »
{{ca.id}} {{ca.start_date|date_format}}
[edit]
{% endblock %}
{% block content %}
{% set props = ca.properties %}
Connection Agreement
| Start Date |
Finish Date |
Title |
Document |
| {{ca.start_date|date_format}} |
{{ca.finish_date|date_format}} |
{{ca.properties.get('title')}} |
Document
|
Associated Elements
| Name |
Primary Supply |
| View |
Import MPAN Core |
Export MPAN Core |
{% for elname, sup in elements.items() %}
{% set era = sup.eras[-1] %}
| {{elname}} |
View |
{{era.imp_mpan_core or ''}} |
{{era.exp_mpan_core or ''}} |
{% endfor %}
Attached Eras
| View Supply |
Start Date |
Import MPAN Core |
Export MPAN Core |
{% for era in eras %}
| View |
{{era.start_date|date_format}} |
{% if era.imp_mpan_core is not none %}
{{era.imp_mpan_core}}
{% endif %}
|
{% if era.exp_mpan_core is not none %}
{{era.exp_mpan_core}}
{% endif %}
|
{% endfor %}
Properties
{{props}}
{% endblock %}