{% block javascript %} {% endblock %} {% extends "master.html" %} {% if runId < 0 %} {% set runId = runlist.runs['maf_run_id'][0] %} {% endif %} {% block pagetitle %} Opsim Run Select {% endblock %} {% block title %} List of all Opsim Runs {% endblock %} {% set active_page = "listRuns" %} {% block moresidebar %} {% endblock %} {% block content %} {# Get basic run info to include into table (for table header) #} {% set runInfo = runlist.run_info(runlist.runs[0]) %} {% for key in runInfo %} {% endfor %} {# Show run info for each run #} {% for run in runlist.runs %} {% set runInfo = runlist.run_info(run) %} {% for key in runInfo %} {% if loop.index == 1 %} {% elif key == 'SQLite File' %} {% elif key == 'ResultsDb' %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ key|escape }}
{{runInfo[key]|escape }} {{runInfo[key][1]|escape}} ResultsDb {{ runInfo[key]|escape }}
{% endblock %}