{% import "macros/items_count.html" as mac_items_count %} {% extends "pages/base.html" %} {% set title = "Structural elements properties" %} {% block main_toolbar %} {{ super() -}} {% filter indent(width=20, first=True) %} New property {% endfilter %} {% endblock main_toolbar %} {% block main_content %} {{ super() -}}

{% for struct_elmt in structural_elements %}
{% endfor %}
Remove
{% for struct_elmt in structural_elements %} {% endfor %} {% for prop in properties %} {% for struct_elmt in structural_elements %} {% endfor %} {% endfor %}
{% filter indent(width=24) %} {{ mac_items_count.render_items_count(total_count, last_item=properties | length) -}} {% endfilter %}
Used in
Name Type Unit Description{{ struct_elmt | capitalize }}s
{{ prop.name }} {{ prop.value_type }} {{ prop.unit_symbol }} {% if prop.description|length > 80 %} {{ prop.description | truncate(80) }} {% else %} {{ prop.description }} {% endif %} {% if prop.used_in[struct_elmt] %} yes {% else %} no {% endif %}
{% endblock main_content %}