{% extends "base.html" %} {% load i18n static %} {% block title %} {% if form.instance.pk %}{% trans "Edit requirement" %}: {{ form.instance.identifier }}{% else %}{% trans "New requirement" %}{% endif %} {% endblock %} {% block contents %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{% trans "Identity" %} {% for name in "identifier title description rationale"|cut:""|slice:":0" %}{% endfor %} {% include "tcms_requirements/_field.html" with field=form.identifier %} {% include "tcms_requirements/_field.html" with field=form.title %} {% include "tcms_requirements/_field.html" with field=form.description %} {% include "tcms_requirements/_field.html" with field=form.rationale %}
{% trans "Taxonomy" %} {% include "tcms_requirements/_field.html" with field=form.category %} {% include "tcms_requirements/_field.html" with field=form.source %} {% include "tcms_requirements/_field.html" with field=form.source_section %} {% include "tcms_requirements/_field.html" with field=form.level %}
{% trans "Organisation" %} {% include "tcms_requirements/_field.html" with field=form.product %} {% include "tcms_requirements/_field.html" with field=form.project %} {% include "tcms_requirements/_field.html" with field=form.feature %} {% include "tcms_requirements/_field.html" with field=form.parent_requirement %}
{% trans "Lifecycle" %} {% include "tcms_requirements/_field.html" with field=form.status %} {% include "tcms_requirements/_field.html" with field=form.priority %} {% include "tcms_requirements/_field.html" with field=form.verification_method %} {% include "tcms_requirements/_field.html" with field=form.verification_exemption_reason %}
{% trans "Safety / criticality" %} (optional)
{% include "tcms_requirements/_field.html" with field=form.asil %} {% include "tcms_requirements/_field.html" with field=form.sil %} {% include "tcms_requirements/_field.html" with field=form.iec62304_class %} {% include "tcms_requirements/_field.html" with field=form.dal %}
{% trans "Document control (ISO 9001 ยง7.5)" %}
{% include "tcms_requirements/_field.html" with field=form.doc_id %} {% include "tcms_requirements/_field.html" with field=form.doc_revision %} {% include "tcms_requirements/_field.html" with field=form.effective_date %} {% include "tcms_requirements/_field.html" with field=form.superseded_by %} {% include "tcms_requirements/_field.html" with field=form.change_reason %}
{% trans "External system keys" %}
{% include "tcms_requirements/_field.html" with field=form.jira_issue_key %}
{% trans "Cancel" %}
{% endblock %}