{% extends 'base.html' %} {% block content %} {% if not user %} Welcome Guest
Register Login

{% else %} Logged in as {{ user.username }}

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

{% endif %} {% if unpublished_tasks %} Unpublished tasks viewable by you:
{% endif %} {% if reviewered_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 %}