{# templates/campaign/campaigns_edit_owners.html #} {% extends "template_base.html" %} {% block title %}Campaign Owner(s): {% if campaignx %}{{ campaignx.campaign_title }}{% endif %}{% 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

Campaign Owner(s): {{ campaignx.campaign_title }}

{% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %}

These are individuals or endorser(s) who have the right to administer this campaign.

Voter or Organization We Vote Id Visible to Public    Feature This Profile Image
{% for campaignx_owner in campaignx_owner_list %} {% endfor %}
Campaign Owners Owner Visible to Public Feature This Profile Image Delete Owner
{% if campaignx_owner.we_vote_hosted_profile_image_url_tiny %} {% endif %} {% if campaignx_owner.organization_name %} {{ campaignx_owner.organization_name }}   {% elif campaignx_owner.organization_we_vote_id %} {{ campaignx_owner.organization_we_vote_id }}   {% else %} {{ campaignx_owner.voter_we_vote_id }}   {% endif %} view visible feature delete
{% endif %}

{% endblock %}