{# SPDX-FileCopyrightText: 2024-2026 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "dashboard_base.html" %} {% load i18n %} {% load projectify %} {% block title %} {% blocktrans with project_title=project.title %}Add task to {{ project_title }} - Projectify{% endblocktrans %} {% endblock title %} {% block extrahead %} {{ form.media }} {% endblock extrahead %} {% block dashboard_content %}
{% include "workspace/task/breadcrumbs.html" with project=project current_page_label=_("New task (currently creating)") current_page_url=request.get_full_path %}
{% include "projectify/forms/submit.html" with name="action" value="create" text=_("Create task") %}
{% action_button text=_("Create and stay") name="action" value="create_stay" %}
{{ form }}
{% csrf_token %}
{% endblock dashboard_content %}