{% if device_association_list %}
Associated Device |
Device Class |
Action |
{% for assoc in device_association_list %}
{% if forloop.counter|divisibleby:"2" %}
{% else %}
{% endif %}
{% for pathinfo in assoc.path %}
{{ pathinfo.name }}
{% if not forloop.last %}
/
{% endif %}
{% endfor %}
|
{{ assoc.obj.attributes.class }}
|
{% ifequal assoc.type "association" %}
{% if write_access %}
delete
{% endif %}
{% else %}
{% if write_access %}
delete
{% endif %}
{% endifequal %}
|
{% endfor %}
{% endif %}
Hidden content, click to expand.