{% extends 'layouts/base.html' %} {% import 'default_run_table.html' as table%} {% from 'render_pagination.html' import render_pagination %} {% import 'run_search_box.html' as search_box%} {% set page_title = 'Runs' %} {# Add DataTable style#} {% block css %} {{ super() }} {% endblock %} {# Content #} {% block container %} {{ search_box.run_search_box(condition_types, run_periods=run_periods, run_from=run_from, run_to=run_to, search_query=search_query) }}

Runs

{{ render_pagination(pagination) }}
{% if runs %} Showing runs: {{ runs[-1].number }} - {{ runs[0].number }}. {{ pagination.per_page }} runs per page. Total runs: {{ pagination.total_count }} {% else %} No runs found {% endif %}
{{ table.default_run_table(runs, DefaultConditions) }}
{{ render_pagination(pagination) }} {% if performance %}
{% endif %}
{% endblock %} {% block js_btm %} {{ super() }} {{ search_box.run_search_box_scripts(condition_types) }} {% endblock %}