{% extends 'base.html' %} {% block head_postload %} {% endblock %} {% block content%} {% set colspan = (args.ps_names | length) + 3 %}

Create Parameter Set

{% for n in args.ps_names %}{% endfor %} {% for section in args.sorted_parameters %} {% for subsection in section.my_items %} {% for item in subsection.my_items %} {% set row_type = 'function' if item.isFunction else 'data' %} {% for v in item.existing_values %} {% if item.isFunction%} {% else %} {% endif %} {% endfor %} {% endfor %} {% endfor %} {% endfor %}
id Name Unit{{n}}
{{section.name}}
{{subsection.name | capitalize}}
{{item.id}} {{item.name}} {{item.unit}}{{v}}{{'%0.4g'| format(v|float)}}

{% endblock %}