{# SPDX-FileCopyrightText: 2024-2025 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "dashboard_base.html" %} {% load i18n %} {% load projectify %} {% load rules %} {% block title %} {% blocktrans with title=project.title %}{{ title }} - Projectify{% endblocktrans %} {% endblock title %} {% block dashboard_content %} {% has_perm "workspace.create_section" user project.workspace as can_create_section %}
{% if task_filter_form %} {% endif %}
{% for section in project.section_set.all %} {% include "workspace/project_detail/section.html" with section=section %} {% empty %}

{% translate "No sections yet" %}

{% translate "Create your first section to start organizing tasks." %}

{% if can_create_section %} {% go_to_action href="dashboard:projects:create-section" project_uuid=project.uuid label=_("Create section") title=_("Create a new section") %} {% endif %}
{% endfor %} {% if can_create_section %}
{% go_to_action href="dashboard:projects:create-section" project_uuid=project.uuid label=_("Create section") title=_("Create a new section") style="primary" %}
{% endif %}
{% endblock dashboard_content %}