{% load i18n %} {% load utilstags %} {% block advanced_details %} Details {% for d in details %} {% if d.name %}
|
{% if d.remotevalue %}
... loading ...
{% else %}
{% if d.value != None %}
{% if d.type == 'adjlist' %}
{% for adj_tuple in d.value %}
{% with adj_tuple.0 as resource %}
{% endfor %} {% else %} {% if d.type == 'adjifaces' %} {% for iface in d.value %} {% with iface.get_node as resource %} {% endfor %} {% else %} {% if d.value.resource_type %} {% with d.value as resource %} {{ resource.name }} {% endwith %} {% else %} {% with d as dv %}
{{ dv.value|default:"ⁿ̸ₐ" }}
{% if dv.copyable %}
{% endif %}
{% endwith %}
{% endif %}
{% endif %}
{% endif %}
{% else %}
ⁿ̸ₐ
{% endif %}
{% if d.hint != None %}
?
{% endif %}
{% endif %}
|
|