{% extends "layouts/base.html" %} {% block title %} Add a new project ~ ATR {% endblock title %} {% block description %} Add a new project based on an existing one. {% endblock description %} {% block content %}

Add a new {{ project_name.removesuffix(" (Incubating)") }} sub-project

New projects can only be derived from existing projects, by adding a suffix.

{{ form.hidden_tag() }}
{{ form.derived_project_name(class_="form-control") }} {% if form.derived_project_name.errors -%} {{ form.derived_project_name.errors[0] }}{%- endif %}

The desired suffix for the full project name.

Warning: Ensure all words in the derived name start with a capital for proper display.

This will be the full display name for the derived project.

This will be the short label used in URLs and identifiers.

{{ form.submit(class_="btn btn-primary mt-3") }}
{% endblock content %} {% block javascripts %} {{ super() }} {% endblock javascripts %}