{% extends "base.html" %} {% load i18n static %} {% block title %} {% if form.instance.pk %}{% trans "Edit project" %}: {{ form.instance.name }}{% else %}{% trans "New project" %}{% endif %} {% endblock %} {% block contents %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{% trans "Identity" %} {% include "tcms_requirements/_field.html" with field=form.product %} {% include "tcms_requirements/_field.html" with field=form.name %} {% include "tcms_requirements/_field.html" with field=form.code %} {% include "tcms_requirements/_field.html" with field=form.description %}
{% trans "Programme" %} {% include "tcms_requirements/_field.html" with field=form.status %} {% include "tcms_requirements/_field.html" with field=form.owner %} {% include "tcms_requirements/_field.html" with field=form.stakeholders %} {% include "tcms_requirements/_field.html" with field=form.start_date %} {% include "tcms_requirements/_field.html" with field=form.target_end_date %} {% include "tcms_requirements/_field.html" with field=form.actual_end_date %}
{% trans "Scope" %} {% include "tcms_requirements/_field.html" with field=form.test_plans %}
{% with custom_fields=form.custom_field_iter %} {% for field in custom_fields %} {% if forloop.first %}
{% trans "Custom fields" %} {% endif %} {% include "tcms_requirements/_field.html" with field=field %} {% if forloop.last %}
{% endif %} {% endfor %} {% endwith %}
{% trans "External system keys" %}
{% include "tcms_requirements/_field.html" with field=form.jira_project_key %} {% include "tcms_requirements/_field.html" with field=form.external_refs %}
{% trans "Cancel" %}
{% endblock %}