{% load static %} {% load tailwind_tags %} {% tailwind_css %}
App
Home
{% if user.is_authenticated %}
Dashboard
{% if user.groups.all %} {% for group in user.groups.all %} {% if group.name == 'staff' or group.name == 'admin' %}
Staff
{% endif %} {% if group.name == 'admin' %}
Admin
{% endif %} {% endfor %} {% endif %} {% endif %}
{% if user.is_authenticated %}
{{ user.full_name|default:user.email }}
Profile
Logout
{% else %}
Login
Sign Up
{% endif %}
Home
{% if user.is_authenticated %}
Dashboard
{% if user.groups.all %} {% for group in user.groups.all %} {% if group.name == 'staff' or group.name == 'admin' %}
Staff
{% endif %} {% if group.name == 'admin' %}
Admin
{% endif %} {% endfor %} {% endif %}
Profile
Logout
{% else %}
Login
Sign Up
{% endif %}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% block content %} {% endblock %}