{% extends 'backend/components/layouts/default.html' %} {% load static %} {% load humanize %} {% block content %} {% if user.is_authenticated %} {% if volunteer_list %}
{% include "backend/volunteer/table.html" %}
Total Volunteers: {{ volunteer_count|intcomma }}
{% else %}
No Volunteers available.
{% if user.is_superuser %}
Add a Volunteer
{% endif %}
{% endif %} {% endif %} {% endblock content %}