{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{{ form.hidden_tag() }}
{{ form.name.label(class="form-label") }} {{ form.name(class="form-control") }} {% if form.name.errors %}
{% for e in form.name.errors %}{{ e }}{% endfor %}
{% endif %}
{{ form.description.label(class="form-label") }} {{ form.description(class="form-control", rows=3) }}
{{ form.project_manager_id.label(class="form-label") }} {{ form.project_manager_id(class="form-select") }}
Only users with the Project Manager role are listed.
{{ form.active(class="form-check-input") }} {{ form.active.label(class="form-check-label") }}
Cancel
{% endblock %}