{% extends "template.html"%}
{% load noctags %}
{% block content %}
Alarm Class: {{o.name}}
Name | {{o.name}} |
Is builtin | {{o.is_builtin|bool_icon}} |
Description | {{o.description}} |
{% for lang in o.text %}
{{lang}} |
{% for msg in o.text.lang %}
msg |
{{o.text.lang.msg}} |
{% endfor %}
|
{% endfor %}
{% if o.datasources %}
DataSources
Name | DataSource | Search |
{% for ds in o.datasources %}
{{ds.name}} |
{{ds.datasource}} |
{% for k, v in ds.search.items %}{{k}} = {{v}} {% endfor %} |
{% endfor %}
{% endif %}
Vars
Name |
Description |
Default |
{% for v in o.vars %}
{{v.name}} |
{{v.description}} |
{% if v.default %}{{v.default}}{% endif %} |
{% endfor %}
{% endblock %}