{%include "header.html"%} {% load static %}
user-profile
{{student_list.first_name}} {{student_list.last_name}}
{% csrf_token %}
New Comments
{% for comment in all_comment %}

{{comment.message}}

{{comment.updated_at}}

{% endfor %}
{% csrf_token %}
All Tasks
{% for task in all_task %}
{{task.task_title}}

{{task.follwup_date}} {{task.follwup_time}}

{% endfor %}
Due Task
{% for task in due_task %}
{{task.task_title}}

{{task.follwup_date}} {{task.follwup_time}}

{% endfor %}
upcoming tasks.
{% for task in upcoming_task %}
{{task.task_title}}

{{task.follwup_date}} {{task.follwup_time}}

{% endfor %}
{%include "sidebar.html"%}
{%include "footer.html"%}