{% extends "base.html" %} {% load static from staticfiles %} {% block headers %} {% endblock %} {% block content %}

General Pages

{% if user.is_authenticated and user.username != ANONYMOUS_USERNAME %}

Profile Pages

{% endif %} {% if user.is_authenticated %}

Member Pages

Archives

{% endif %} {% if user.is_superuser %}

Admin

{% endif %} {% if user.is_superuser or PRESIDENT %}

President

{% endif %} {% endblock %}