{# 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" %}
{% 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 %}
{% for label in labels %}
{% translate "Label name" %}
{% translate "Delete label" %}
{% endfor %}
{% has_perm "workspace.update_label" user workspace as can_update_label %}
{% if can_update_label %}
{{ label.name }}
{% has_perm "workspace.delete_label" user workspace as can_delete_label %}
{% if can_delete_label %}
{% endif %}