{# SPDX-FileCopyrightText: 2025 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "workspace/workspace_settings_base.html" %} {% load i18n %} {% load projectify %} {% load rules %} {% block title %} {% blocktrans with workspace_title=workspace.title %}{{ workspace_title }} labels - Projectify{% endblocktrans %} {% endblock title %} {% block workspace_settings_content %}

{% translate "Labels" %}

{% for label in labels %} {% endfor %}
{% translate "Label name" %} {% translate "Delete label" %}
{% has_perm "workspace.update_label" user workspace as can_update_label %} {% if can_update_label %} {{ label.name }}
{% icon "pencil" %}
{% else %} {{ label.name }} {% endif %}
{% has_perm "workspace.delete_label" user workspace as can_delete_label %} {% if can_delete_label %}
{% action_button text=_("Delete") icon="trash" style="destructive" grow=True %}
{% endif %}
{% has_perm "workspace.create_label" user workspace as can_create_label %} {% if can_create_label %} {% anchor "dashboard:workspaces:create-label" _("Add label") workspace_uuid=workspace.uuid %} {% endif %}

{% trans "Help" %}
{% endblock workspace_settings_content %}