{% extends "base.html" %} {% load static %} {% block content %}

Add New Voter

{% csrf_token %}
Core Information
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.nickname }} {% if form.nickname.errors %}
{{ form.nickname.errors }}
{% endif %}
{{ form.voter_id }} {% if form.voter_id.errors %}
{{ form.voter_id.errors }}
{% endif %}
{{ form.birthdate }} {% if form.birthdate.errors %}
{{ form.birthdate.errors }}
{% endif %}
{{ form.registration_date }} {% if form.registration_date.errors %}
{{ form.registration_date.errors }}
{% endif %}
Address
{{ form.address_street }} {% if form.address_street.errors %}
{{ form.address_street.errors }}
{% endif %}
{{ form.city }} {% if form.city.errors %}
{{ form.city.errors }}
{% endif %}
{{ form.state }} {% if form.state.errors %}
{{ form.state.errors }}
{% endif %}
{{ form.prior_state }} {% if form.prior_state.errors %}
{{ form.prior_state.errors }}
{% endif %}
{{ form.zip_code }} {% if form.zip_code.errors %}
{{ form.zip_code.errors }}
{% endif %}
{{ form.county }} {% if form.county.errors %}
{{ form.county.errors }}
{% endif %}
{{ form.neighborhood }} {% if form.neighborhood.errors %}
{{ form.neighborhood.errors }}
{% endif %}
{{ form.latitude }} {% if form.latitude.errors %}
{{ form.latitude.errors }}
{% endif %}
{{ form.longitude }} {% if form.longitude.errors %}
{{ form.longitude.errors }}
{% endif %}
Contact Information
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors }}
{% endif %}
{{ form.phone_type }} {% if form.phone_type.errors %}
{{ form.phone_type.errors }}
{% endif %}
{{ form.secondary_phone }} {% if form.secondary_phone.errors %}
{{ form.secondary_phone.errors }}
{% endif %}
{{ form.secondary_phone_type }} {% if form.secondary_phone_type.errors %}
{{ form.secondary_phone_type.errors }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
Campaign Data
{{ form.district }} {% if form.district.errors %}
{{ form.district.errors }}
{% endif %}
{{ form.precinct }} {% if form.precinct.errors %}
{{ form.precinct.errors }}
{% endif %}
{{ form.candidate_support }} {% if form.candidate_support.errors %}
{{ form.candidate_support.errors }}
{% endif %}
{{ form.yard_sign }} {% if form.yard_sign.errors %}
{{ form.yard_sign.errors }}
{% endif %}
{{ form.window_sticker }} {% if form.window_sticker.errors %}
{{ form.window_sticker.errors }}
{% endif %}
{{ form.call_queue_status }} {% if form.call_queue_status.errors %}
{{ form.call_queue_status.errors }}
{% endif %}
{{ form.is_targeted }}
{{ form.target_door_visit }}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %}
Cancel
{% endblock %}