{% load static %} {% include 'bases/head_base.html' %} Tasks {% include 'bases/navbar_base.html' %}
{% if error_message %}

{{ error_message }}

{% else %}

On this page you can see a list of all open and closed tasks. You are also able to claim any open tasks for yourself or manage tasks that you have already claimed.

{% endif %}
{% if tasks %}

Open Tasks

{% for task in tasks %} {% if task.task_open %} {% endif %} {% endfor %}
Name Priority Deadline Size Age
{% if task.is_pinned %} {% endif %} {{ task.task_name }} {{ task.task_priority }} {{ task.deadline_date }} {{ task.task_size }}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}

Closed Tasks

{% for task in tasks %} {% if not task.task_open %} {% endif %} {% endfor %}
Name Priority Deadline Size Age
{{ task.task_name }} {{ task.task_priority }} {{ task.deadline_date }} {{ task.task_size }} {{ task.task_open }}
{% else %}

No tasks have been created. Create one here

{% endif %} {% include 'bases/modal_base.html' %} {% include 'bases/footer_base.html' %}