{% extends 'base.html' %} {% block content %}

Created Organizations

{% for obj in object_list %}

{{ obj.name }}

{{ obj.description }}
  • Phone: {{ obj.phone }}
  • Email: {{ obj.email }}
  • Address: {{ obj.address }}
  • Max Volunteers: {{ obj.max_volunteers }}
  • Min Volunteers: {{ obj.min_volunteers }}
  • View Profile
{% endfor %}
{% include "includes/search.html" %}
{% for form in form %} {{ form.errors }} {{ form }} {% endfor %}

{% endblock %}