P.I.T. Count
Home{% if request.path == '/' %}
(current)
{% endif %}
{% if user.is_authenticated %}
Forms{% if request.path == '/user/' %}
(current)
{% endif %}
{% endif %}
Charts{% if request.path == '/dashboard/' %}
(current)
{% endif %}
Resources{% if request.path == '/resources/' %}
(current)
{% endif %}
{% if user.is_authenticated %}
Admin{% if request.path == '/admin/' %}
(current)
{% endif %}
{% endif %} {% if user.is_authenticated == False %}
Login{% if request.path == '/login/' %}
(current)
{% endif %}
{% endif %} {% if user.is_authenticated == False %}
Register{% if request.path == '/register/' %}
(current)
{% endif %}
{% endif %} {% if user.is_authenticated %}
Logout{% if request.path == '/logout/' %}
(current)
{% endif %}
{% endif %}
{% block content %} {% endblock %}