{% extends 'schasite/base.html' %} {% load static %} {% block pagetitle %} Stonehedge Community Homeowners Association {% endblock %} {% block content %}

Membership Form for 2024

{% csrf_token %}
Person #1
{% for field in peopleForm1 %}
{{ field.errors }} {{ field.label_tag }} : {{ field }}
{% endfor %}
Person #2
{% for field in peopleForm2 %}
{{ field.errors }} {{ field.label_tag }} : {{ field }}
{% endfor %}
Address
{% for field in addressForm %}
{{ field.errors }} {{ field.label_tag }} : {{ field }}
{% endfor %}
Children
{% for field in membershipForm %}
{{ field.errors }} {{ field.label_tag }} : {{ field }}

Please add the names as a comma seperated list. i.e. Bob, Cindy

{% endfor %}
Services Information
{% for field in servicesForm %}
{{ field.errors }} {{ field }} : {{ field.label_tag }}
{% endfor %}
Committee Information
{% for field in committeeForm %}
{{ field.errors }} {{ field }} : {{ field.label_tag }}
{% endfor %}
{% if err_msg %}

{{ err_msg }}

{% endif %} {% if captchaForm %} {{ captchaForm }} {% endif %}

Please note dues will be $30 for 2024.

{% endblock %}