{# templates/position/voter_position_list.html #} {% extends "template_base.html" %} {% block title %}Positions{% endblock %} {% block content %} {% if position_list %} {% for position in position_list %}
{% if position.organization.id %}
{{ position.organization.organization_name }}
{% else %}
I Support
{% endif %}
{% if not position.statement_text %} {% else %} {{ position.statement_text }}{% endif %}

{% if position.organization.id in organizations_followed_by_voter %} {% endif %} {% endfor %} {% else %}

(no positions found)

{% endif %} {% endblock %}