{% extends "page.html" %} {% block page_content %}

Формулы

Тест формул
Коэффициенты
{% for f in formulas %}
Формула:
{{ f.formula }}
Результат: {{ f.result }}
{% if f.sandbox %}

Параметры расчёта

{% for inp in f.sandbox.inputs %}
{% if inp.type == "checkbox" %} {% elif inp.type == "select" %} {% else %} {% endif %}
{% endfor %}
{% else %}

Для этой формулы пока нет тестовой песочницы.

{% endif %}

Связанные коэффициенты

{% for c in f.coeffs %}{% endfor %}
КлючЗначениеОписание
{{ c.key }} {{ c.value }} {{ c.description }}
{% endfor %}
{% if groups|length == 0 %}

Нет коэффициентов

{% else %} {% for gkey, gdata in groups.items() %}
{{ gdata.info.name }} {{ gdata.coeffs|length }}
📐
{% for c in gdata.coeffs %}{% endfor %}
КлючЗначениеОписаниеФормулаАктивен
{{ c.key }} {{ c.value }} {{ c.description }} {{ c.formula_ref }}
{% endfor %}
{% endif %}
{% endblock %}