{% extends "base.html" %} {% set model_status = none %} {% set data_status = none %} {% set runs_status = 'active' %} {% set audit_status = none %} {% include "include/navbar.html" %} {% block title %} Runs {% endblock %} {% block content %}

Select a project to view available runs
{% if runcard is not none %}
{% for run in project_runs %} {{ run["name"] }} -- {{ run["date"] }} {% endfor %}

Run: {{ runcard["name"] }}

{% include "include/project/run_metadata.html" %}
{% if runcard["tags"]|length > 0 %}
{% include "include/model/model_tags.html" %}
{% endif %}
{% include "include/project/runcard_extras.html" %}
{% include "include/project/plot_extras.html" %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}