{% extends "base.html" %} {% block title %}Property list{% endblock %} {% block info %}

List of properties in branch {{ branch }}

{% endblock %} {% block content %} {% for property in properties %} {% if ('childs' in property.flags) or (properties|length != 1) %} {% if 'description' in property %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}
Name Description
"{{ property.name }}" {{ property.description }}{{ property.name }}" {% if 'description' in property %} {% endif %} {% if 'W' in property.mode %} {% endif %}
Description {{ property.description }}
Current value {{ value }}
Set value
Mode
    {% for m in property.mode %}
  • {{ m }}
  • {% endfor %}
Type {{ property.type }}
Unit {{ property.unit }}
Path {{ property.path }}
{% endblock %}