{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "dashboard_base.html" %} {% load i18n %} {% load projectify %} {% block dashboard_content %}

{% translate "Search workspace" %}

{% if results is not None %}

{% translate "Projects" %}

{% if results.projects %} {% else %}

{% translate "No projects found." %}

{% endif %}

{% translate "Tasks" %}

{% if results.tasks %} {% regroup results.tasks by project as tasks_by_project %} {% else %}

{% translate "No tasks found." %}

{% endif %}
{% endif %}
{% endblock dashboard_content %}