{% extends "base.html" %}
{% block title %}
» DNO Contracts » {{contract.name}} » LLFCs
{% endblock %}
{% block nav %}
» DNO Contracts »
{{contract.name}}
» LLFCs
{% endblock %}
{% block content %}
Code |
Description |
Voltage Level |
Is Substation? |
Is Import? |
{% for llfc in llfcs %}
{{llfc.code}}
|
{{llfc.description}} |
{{llfc.voltage_level.code}} - {{llfc.voltage_level.name}} |
{% if llfc.is_substation %}
Has Substation
{% else %}
No Substation
{% endif %}
|
{% if llfc.is_import %}
Import
{% else %}
Export
{% endif %}
|
{% endfor %}
{% endblock %}