{% extends "base.html" %} {% block page_title %}Infection curve models{% endblock %} {% block title %}Infection curve models Reset {% endblock %} {% block page_css %} {% endblock %} {% block content %}
{{ form.hidden_tag() }} {% if form.errors %}

Something gone wrong!

{% endif %} {% for field in form if field.widget.input_type != 'hidden'%} {% for error in field.errors %} {% endfor %} {% endfor %}
{{ field.label() }} {{ field() }}
{{error}}
{% if plots %}
{% for pname, plot in plots.items() %} {% if loop.first %}
{{plot}}
{% else %}
{{plot}}
{% endif %} {% endfor %}
{% for field in form %}{{ field(id="download_" + field.id) }} }}{% endfor %}
{{result.to_html()|safe}}
{% endif %}
{% endblock %} {% block page_js %} {% endblock %}