{% load utilstags %} {% load timestamps %} {% block "global" %} {% if icon_url %}
{% endif %}
{% block "element_state %}
{% endblock %}
{% block "details" %}
{% with details|paginate:"100" as pages %}
{% for page in pages %}
{% for detail in page %}
{% if detail %}
{% endfor %}
{% endwith %}
{% endblock %}
{% if icon_url %}
{{ detail.name }}
:
{% if detail.remotevalue %}
{% else %}
... loading ...
{% else %}
{% if detail.value != None %}
{% if detail.value.resource_type %}
{% with detail.value as resource %}
{{ dv.value|ifblank:"ⁿ̸ₐ"|url2link|safe }}
{% if dv.copyable %}
{% endif %}
{% endwith %}
{% endif %}
{% else %}
{% if detail.value_list != None %}
{% if detail.copyable_list %}
{% else %}
{{ detail.value|default:"ⁿ̸ₐ" }}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% with detail.value_list as values %}
{% for dv in values %}
{{ dv.value|ifblank:"ⁿ̸ₐ"|url2link|safe }}
{% if dv.copyable %}
{% endif %}
{% if not forloop.last %}
{{ detail.sep}}
{% endif %}
{% endfor %}
{% endwith %}
|