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

Parameter Sets

{% for n in args.ps_names %} {% endfor %} {% for section in args.sorted_parameters %} {% for subsection in section.my_items %} {% if section.name != 'Global Parameters' %} {% for n in args.ps_names %} {% endfor %} {% endif %} {% 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}}
{{subsection.name | capitalize}}{{n}}
{{item.id}}{% if section.name != 'Global Parameters' %}functions{% endif %} {{item.name}} {{item.unit}}{{v}}{{'%0.4g'| format(v|float)}}
{% include 'status.html' %}

{% endblock %}