{% extends "base.html" %} {% block title %} » Connection Agreements » {{ca.id}} {{ca.start_date|date_format}} {% endblock %} {% block nav %} Connection Agreements » {{ca.id}} {{ca.start_date|date_format}} [edit] {% endblock %} {% block content %} {% set props = ca.properties %}
| Start Date | Finish Date | Title | Document |
|---|---|---|---|
| {{ca.start_date|date_format}} | {{ca.finish_date|date_format}} | {% if 'title' in props %} {{ca.properties['title']}} {% endif %} | {% if 'url' in props %} Document {% endif %} |
| Name | Primary Supply | ||
|---|---|---|---|
| View | Import MPAN Core | Export MPAN Core | |
| {{elname}} | View | {{era.imp_mpan_core or ''}} | {{era.exp_mpan_core or ''}} |
| View Supply | Start Date | Import MPAN Core | Export MPAN Core |
|---|---|---|---|
| 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 %} |
{{props}}
{% endblock %}