{% load utilstags %}
Search keyword: {{term}}
{% if elements %}
Monitored elements
Showing {{elements.object_list|length}} of {{elements.paginator.count}}
Name |
Description |
{% for e in elements %}
{% if e.parent %}
{% with e.parent as e %}
{{ e.name }}
{% endwith %}
:
{% endif %}
{{ e.name }}
|
{{ e.description }}
{% with info_data_by_uuid|dict_lookup:e.uuid as infos %}
{% if infos %}
{% for info in infos %}
-
{{ info }}
{% endfor %}
{% endif %}
{% endwith %}
|
{% endfor %}
Showing {{elements.object_list|length}} of {{elements.paginator.count}}
{% endif %}
{% if conditions %}
Conditions
Showing {{conditions.object_list|length}} of {{conditions.paginator.count}}
Path |
Description |
{% for e in conditions %}
{{ e.path }}
|
{{ e.description }}
|
{% endfor %}
Showing {{conditions.object_list|length}} of {{conditions.paginator.count}}
{% with conditions as elements %}
{% endwith %}
{% else %}
No elements
{% endif %}