{# templates/image/images_for_one_voter.html #}
{% extends "template_base.html" %}
{% block title %}
Voter Images:
{% if voter_id %}{{ voter_id }}
{% else %}No Voter Found{% endif %}
{% endblock %}
{% block content %}
< Back to Voter List Analysis
< Back to Cache images locally for all voters
< Back to Voter
| We Vote ID | display_kind_of_image | we_vote_image_url | ||
| {{ forloop.counter }} | {{ one_image_row.voter_we_vote_id }} | {{ one_image_row.display_kind_of_image }} / {{ one_image_row.display_image_size }} | {% if one_image_row.display_image_size != "original" %}
{# Don't show image if too big #}
{% endif %}
|
{% if one_image_row.we_vote_image_url %} {{ one_image_row.we_vote_image_url }} {% else %}{% endif %} |
(no voter images found)
{% endif %}