{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% load tags %} {% block header %} {{ block.super }} {% endblock %} {% block javascript %} {{ block.super }} {% endblock %} {% block content %}

{{ motion }}
{% trans "Motion" %} {{ motion.identifier }}, {{ poll }} {% trans "Back to motion" %} {% if perms.core.can_manage_projector %} {% trans "Vote result" %} {% endif %} {% trans 'PDF' %} {% if perms.motion.can_manage_motion %} {% endif %}

{% with poll.get_options.0 as option %} {% if poll.votesvalid != None %} {% endif %}
{% trans 'Voting result' %}
{% trans 'Yes' %} {{ option.Yes }}
{% trans 'No' %} {{ option.No }}
{% trans 'Abstention' %} {{ option.Abstain }}
{% trans 'Valid votes' %} {{ poll.print_votesvalid }}
{% endwith %}

{% trans 'All single votes' %}

{% for keypad_data in keypad_data_list %} {% endfor %}
{% trans 'All votes' %}
{% trans 'Name' %} {% trans 'Structure level' %} {% trans 'Serial number' %} {% trans 'Vote' %}
{% if keypad_data.keypad.user %} {{ keypad_data.keypad.user.title }} {% if 'participant_sort_users_by_first_name'|get_config %} {{ keypad_data.keypad.user.first_name }} {{ keypad_data.keypad.user.last_name }} {% else %} {{ keypad_data.keypad.user.last_name }}{% if keypad_data.keypad.user.last_name and keypad_data.keypad.user.first_name %},{% endif %} {{ keypad_data.keypad.user.first_name }} {% endif %} {% else %} {% trans 'Anonymous' %} {% endif %} {{ keypad_data.keypad.user.structure_level }} {% if keypad_data.serial_number %} {{ keypad_data.serial_number }} {% else %} {{ keypad_data.keypad.keypad_id }} {% endif %} {{ keypad_data.get_value }}
{% endblock %}