{% extends 'vote/layout.html' %} {% load django_bootstrap5 %} {% load static %} {% block content %}
{% csrf_token %}
{% for question in questions %}
{{ question }}
{% if question.images %}
{% for image in question.images.all %}
{% endfor %}
{% endif %}
{% endfor %}

Voter Info

{% bootstrap_field form.first_name show_label=False %} {% bootstrap_field form.last_name show_label=False %} {% bootstrap_field form.age_range show_label=False %} {% bootstrap_field form.zip_code show_label=False %} {% bootstrap_button button_type="submit" content="Submit" extra_classes="w-100" %}
{% endblock %}