{% extends "report_base.html" %} {% import 'macros_helpers.html' as helpers %} {% import 'macros_sbml.html' as macros %} {% block content %} {% if doc.isSetNotes() %} {{ helpers.notes(doc) }}
{% endif %} {% if model.isSetNotes() %} {{ helpers.notes(model) }}
{% endif %}

Model : {{ model.id }}

{{ model.getModelHistory()|SBML_modelHistoryToString }}
SBML model

{{ helpers.annotation(doc) }}
{{ helpers.annotation(model) }}
{{ macros.model(model) }}
{% if functions %} {{ macros.function_header(functions|length) }} {% for item in functions %} {{ macros.function_content(item) }} {% endfor %}

{% endif %} {% if units %} {{ macros.unit_header(units|length) }} {% for item in units %} {{ macros.unit_content(item) }} {% endfor %}

{% endif %} {% if compartments %} {{ macros.compartment_header(compartments|length) }} {% for item in compartments %} {{ macros.compartment_content(item, values) }} {% endfor %}

{% endif %} {% if species %} {{ macros.species_header(species|length) }} {% for item in species %} {{ macros.species_content(item) }} {% endfor %}

{% endif %} {% if parameters %} {{ macros.parameter_header(parameters|length) }} {% for item in parameters %} {{ macros.parameter_content(item, values) }} {% endfor %}

{% endif %} {% if assignments %} {{ macros.assignment_header(assignments|length) }} {% for item in assignments %} {{ macros.assignment_content(item) }} {% endfor %}

{% endif %} {% if rules %} {{ macros.rule_header(rules|length) }} {% for item in rules %} {{ macros.rule_content(item) }} {% endfor %}

{% endif %} {% if constraints %} {{ macros.constraint_header(constraints|length) }} {% for item in constraints %} {{ macros.constraint_content(item) }} {% endfor %}

{% endif %} {% if reactions %} {{ macros.reaction_header(reactions|length) }} {% for item in reactions %} {{ macros.reaction_content(item) }} {% endfor %}

{% endif %} {% if events %} {{ macros.event_header(events|length) }} {% for item in events %} {{ macros.event_content(item) }} {% endfor %}
{% endif %} {% endblock %}