{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %}

{% trans 'Capability' %}

{% if capability %} {% for item in capability %} {% endfor %}
{% trans 'Name' %} {% trans 'Description' %}
{{ item.name }} {{ item.description }}
{% else %} {% endif %}

{% trans 'Logical Name' %}

{% if logical_name %} {% for item in logical_name %} {% endfor %}
{% trans 'Name' %}
{{ item.name }}
{% else %} {% endif %}

{% trans 'Configuration' %}

{% if configuration %} {% for item in configuration %} {% endfor %}
{% trans 'Name' %} {% trans 'Value' %}
{{ item.name }} {{ item.value }}
{% else %} {% endif %}

{% trans 'Back to main tree information' %}

{% endblock content %}