{% extends "pages/base.html" %} {% set title = "Timeseries attributes" %} {% block main_toolbar %} {{ super() -}} {% filter indent(width=20, first=True) %} Add {% endfilter %} {% endblock main_toolbar %} {% block main_content %} {{ super() -}}
{% for prop in properties %} {% endfor %}
Name Type Unit Description
{{ prop.name }} {{ prop.value_type }} {{ prop.unit_symbol }} {% if prop.description|length > 80 %} {{ prop.description | truncate(80) }} {% else %} {{ prop.description }} {% endif %}
{% endblock main_content %} {% block body_scripts %} {{ super() -}} {% filter indent(width=8, first=True) %} {% endfilter %} {% endblock body_scripts %}