{% load static %}
{% block title %} Base App {% endblock %}
HSAS
{% if user.is_authenticated %}
Home
Tasks
{% endif %} {% if not user.is_authenticated %}
Login
Register
{% endif %}
{% if user.is_authenticated %}
You are Logged in as {{ user.username }}
Account
{{ user.first_name }} {{ user.last_name }}
View Profile
{% comment %}
View Profile
{% endcomment %}
Logout
{% comment %}
Logout
{% endcomment %}
{% endif %}
{% if messages %} {% for message in messages %}
{{ message }}
×
{% endfor %} {% endif %}
{% block content %} {% endblock %}