{% if valid_tag_target %}
{% if write_access %}
link with tagged device
{% endif %}
{% endif %}
{% 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 }}
|
{% if write_access %}
{% ifequal assoc.type "association" %}
delete
{% else %}
delete
{% endifequal %}
{% endif %}
|
{% endfor %}
{% endif %}
Hidden content, click to expand.