{% extends "base.html" %} {% load bootstrap5 %} {% block section %}
{% if run_id %}

Edit Test Run #{{ run_id }}

{% else %}

Create Test Run

{% endif %} {% buttons %}
{% if run_id %} {% endif %}
{% endbuttons %} {% csrf_token %} {% bootstrap_form_errors form type='non_fields' %}
{% bootstrap_field form.project_name size='sm' %}
{% bootstrap_field form.run_id size='sm' %}
{% bootstrap_field form.run_name size='sm' %}
TestRail filters
{% bootstrap_field form.plan_name size='sm' %}
{% bootstrap_field form.test_pattern size='sm' %}
{% bootstrap_field form.created_by_id size='sm' %}
User to id list:
  • os-qa-bot = 109
{% bootstrap_field form.created_after size='sm' %}
{% bootstrap_field form.created_before size='sm' %}
Text filters
{% bootstrap_field form.ip_filter size='sm'%}
{% bootstrap_field form.uuid_filter size='sm'%}
{% bootstrap_field form.filter_last_traceback size='sm'%}
{% bootstrap_field form.filter_func size='sm' %}
{% buttons %}
{% if run_id %} {% endif %}
{% endbuttons %}
Already checked tests: {% for test_id in checked_tests %} {{ test_id }} {% endfor %}
{% endblock %}