{% extends "base.html" %} {% block title %}{{ _('Manage Kanban Columns') }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

{{ _('Manage Kanban Columns') }}

{{ _('Customize your kanban board columns and task states') }}

{% if projects %}
{% endif %} {{ _('Add Column') }}
{% for column in columns %} {% endfor %}
# {{ _('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 %}
{% if not column.is_system %} {% endif %}
{% if not columns %}

{{ _('No kanban columns found. Create your first column to get started.') }}

{% endif %}

{{ _('Tips:') }}

  • {{ _('Drag and drop rows to reorder columns') }}
  • {{ _('System columns (todo, in_progress, done) cannot be deleted but can be customized') }}
  • {{ _('Columns marked as "Complete" will mark tasks as completed when dragged to that column') }}
  • {{ _('Inactive columns are hidden from the kanban board but tasks with that status remain accessible') }}
{% endblock %}