{% extends "base.html" %} {% block title %}Task Board - ICDEV™ Dashboard{% endblock %} {% block content %}
{% set columns = [ ("suggested", "Suggested"), ("backlog", "Backlog"), ("scheduled", "Scheduled"), ("in_progress", "In Progress"), ("done", "Done") ] %} {% for status_key, status_label in columns %}

{{ status_label }}

0 {% if status_key == "suggested" %} {% endif %}
Loading...
{% endfor %}
{% endblock %}