{% extends "base.html" %} {% block title %}{{ _('Manage Kanban Columns') }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
{{ _('Customize your kanban board columns and task states') }}
| # | {{ _('Key') }} | {{ _('Label') }} | {{ _('Icon') }} | {{ _('Color') }} | {{ _('Status') }} | {{ _('Complete?') }} | {{ _('System') }} | {{ _('Actions') }} |
|---|---|---|---|---|---|---|---|---|
{{ column.key }} |
{{ column.label }} | {{ column.icon }} | {{ column.color }} | {% if column.is_active %} {{ _('Active') }} {% else %} {{ _('Inactive') }} {% endif %} | {% if column.is_complete_state %} {{ _('Yes') }} {% else %} {{ _('No') }} {% endif %} | {% if column.is_system %} {{ _('System') }} {% else %} {{ _('Custom') }} {% endif %} |
{{ _('No kanban columns found. Create your first column to get started.') }}
{{ _('Tips:') }}
{{ _('Are you sure you want to delete the column?') }}
{{ _('Key:') }}
{{ _('Note: Tasks with this status will remain accessible but the column will no longer appear on the kanban board.') }}