{% extends "usta/base.html" %} {% load staticfiles admin_static htmleditor_tags %} {% block title %}{{ block.super }} | Volunteer Topics{% endblock %} {% block main %}

Volunteer Topics

{% csrf_token %} {% for topic in topics %} {% with id=topic.pk %} {% endwith %} {% endfor %}
Topic Name Member Subscribed
{{ topic.name }} {% if topic.pk in memberships %} Yes {% else %} No {% endif %}
{% if memberships %}

Your current email is {{ request.user.email|default:"None" }}

{% endif %}
{% for topic in topics %}

{{ topic.name }} {% if perms.volunteer.change_volunteertopic %}Pencil{% endif %}

{% docreplace topic.content %}
{% endfor %}
{% endblock %}