diff --git a/assets/pasted-20251123-153606-fc72d13a.png b/assets/pasted-20251123-153606-fc72d13a.png new file mode 100644 index 0000000..94646b3 Binary files /dev/null and b/assets/pasted-20251123-153606-fc72d13a.png differ diff --git a/core/__pycache__/views.cpython-311.pyc b/core/__pycache__/views.cpython-311.pyc index da1d71b..ed053f2 100644 Binary files a/core/__pycache__/views.cpython-311.pyc and b/core/__pycache__/views.cpython-311.pyc differ diff --git a/core/templates/base.html b/core/templates/base.html index bdd75c5..6981cf1 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -38,7 +38,7 @@ -
+
{% block content %} {% endblock %}
diff --git a/core/templates/core/chat.html b/core/templates/core/chat.html index eac796e..724c25a 100644 --- a/core/templates/core/chat.html +++ b/core/templates/core/chat.html @@ -3,6 +3,8 @@ {% block title %}Chat{% endblock %} +{% block container_class %}container-fluid{% endblock %} + {% block content %}
diff --git a/core/templates/core/index.html b/core/templates/core/index.html index 5513300..793266d 100644 --- a/core/templates/core/index.html +++ b/core/templates/core/index.html @@ -4,10 +4,7 @@ {% block title %}AI Task Manager - Home{% endblock %} {% block content %} -
-

AI Task Manager

-

Your intelligent assistant for managing tasks and conversations.

-
+
diff --git a/core/templates/core/kanban.html b/core/templates/core/kanban.html index 0988054..5ab710c 100644 --- a/core/templates/core/kanban.html +++ b/core/templates/core/kanban.html @@ -4,55 +4,54 @@ {% block title %}AI Task Manager - Kanban Board{% endblock %} -{% block content %} -
-

Kanban Board

-

Visualize your tasks and track progress.

-
+{% block container_class %}container-fluid{% endblock %} -
- - {% csrf_token %} -
- {% for status_value, status_display in status_choices %} -
-

{{ status_display }}

-
- {% with tasks=tasks_by_status|get_item:status_value %} - {% if tasks %} - {% for item in tasks %} -
-
-
- {% csrf_token %} - -
-
{{ item.title }}
-

{{ item.description|default:""|truncatewords:15 }}

- {% if item.tags %} -
- {% for tag in item.tags.split|slice:":3" %} - {{ tag }} - {% endfor %} -
- {% endif %} - {% if item.deadline %} -

Deadline: {{ item.deadline|date:"Y-m-d" }}

- {% endif %} -
-
- {% endfor %} - {% else %} -
No tasks in this stage.
- {% endif %} - {% endwith %} -
+{% block content %} + + +
+ + {% csrf_token %} +
+ {% for status_value, status_display in status_choices %} +
+

{{ status_display }}

+
+ {% with tasks=tasks_by_status|get_item:status_value %} + {% if tasks %} + {% for item in tasks %} +
+
+
+ {% csrf_token %} + +
+
{{ item.title }}
+

{{ item.description|default:""|truncatewords:15 }}

+ {% if item.tags %} +
+ {% for tag in item.tags.split|slice:":3" %} + {{ tag }} + {% endfor %} +
+ {% endif %} + {% if item.deadline %} +

Deadline: {{ item.deadline|date:"Y-m-d" }}

+ {% endif %} +
+
+ {% endfor %} + {% else %} +
No tasks in this stage.
+ {% endif %} + {% endwith %} +
+
+ {% endfor %}
- {% endfor %}
-
{% block scripts %}