{% extends 'base.html' %} {% block content %} {% if not user %} Checkout the tasks on the left panel for tasks that have been recently created.
Checkout the textbooks for textbooks that have been added to the project.
{% else %} Logged in as {{ user.username }}

{% endif %} {% if can_create_task %} Add a new textbook
Create a task

{% endif %} {% if unpublished_tasks %} Tasks created by you that need approval:
{% endif %} {% if reviewing_tasks %} Tasks you are reviewering:
{% endif %} {% if selected_tasks %} Tasks that have been assigned to you:
{% endif %} {% if claimed_tasks %} Tasks claimed but still not assigned to you:
{% endif %} {% endblock %}