{# templates/campaign/campaigns_edit_politicians.html #} {% extends "template_base.html" %} {% block title %}{% if campaignx %}{{ campaignx.campaign_title }}{% endif %}: Politician(s) Supported by This Campaign{% endblock %} {% block content %} {% load template_filters %} {% if not campaignx or not campaignx.we_vote_id %} This page requires a valid campaignx. {% else %} < Back to Campaign Summary

{{ campaignx.campaign_title }}: Politician(s) Supported by This Campaign

{% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %}

These are the politicians this campaign is supporting.

Politician We Vote Id
{% for campaignx_politician in campaignx_politician_list %} {% endfor %}
Campaign Politicians State Code Delete Politician
{% if campaignx_politician.we_vote_hosted_profile_image_url_tiny %} {% endif %} {{ campaignx_politician.politician_name }}   {% if campaignx_politician.politician_we_vote_id %} {{ campaignx_politician.politician_we_vote_id }} view {% else %} not linked {% endif %} {% if campaignx_politician.state_code %} {{ campaignx_politician.state_code }}   {% endif %} delete


Politician List Serialized (For Reference Only) {% endif %}

{% endblock %}