{% extends "report_base.html" %} {% import 'macros_sbml.html' as macros %} {% block content %}

 Model : {{ model.id }}

{{ model.history }}
{{ model.id_html }}
id
name{{ model.name }}
time{{ model.object.time_units }}
substance{{ model.object.substance_units }}
extent{{ model.object.extent_units }}
volume{{ model.object.volume_units }}
area{{ model.object.area_units }}
length{{ model.object.length_units }}
{{ doc.packages }}
{{ doc.annotation }}
{{ model.annotation }}
{% if doc.notes %}{{ doc.notes }}
{% endif %} {% if model.notes %}{{ model.notes }}
{% endif %}
{% if modeldefs %}

{{ macros.modeldef_header(modeldefs|length) }} {% for item in modeldefs %} {{ macros.modeldef_content(item) }} {% endfor %}

{% endif %} {% if submodels %}

{{ macros.submodel_header(submodels|length) }} {% for item in submodels %} {{ macros.submodel_content(item) }} {% endfor %}

{% endif %} {% if ports %}

{{ macros.port_header(ports|length) }} {% for item in ports %} {{ macros.port_content(item) }} {% endfor %}

{% endif %} {% 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 geneproducts %}

{{ macros.geneproduct_header(geneproducts|length) }} {% for item in geneproducts %} {{ macros.geneproduct_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 reactions %}

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

{% endif %} {% if objectives %}

{{ macros.objective_header(objectives|length) }} {% for item in objectives %} {{ macros.objective_content(item) }} {% endfor %}

{% endif %} {% if constraints %}

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

{% endif %} {% if events %}

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

{% endif %} {% endblock %}