{% extends 'votebase/base.html' %} {% load i18n voter_extras %} {% block title %}{% trans 'My voting history' %}{% endblock %} {% block content_title %}{% trans 'My voting history' %}{% endblock %} {% block content_title_extra %}{% endblock %} {% block subtitle %}{% endblock %} {% block subtitle_extra %}{% endblock %} {% block content %} {% include 'votebase/helpers/tabs.html' with active='voting_history' %}

{% trans 'Surveys' %}


{% if object_list %} {% for voter in object_list %} {% endfor %}
{{ voter.round.survey.title }} {{ voter.created }} {% if voter.round.survey.is_quiz %}{{ voter.quiz_result }}%{% endif %} {% trans 'Show answers' %}
{% include 'votebase/helpers/pagination-listview.html' with page_obj=pagination.page is_paginated=pagination.is_paginated %} {% else %} {% trans "You haven't voted in any survey yet." %} {% endif %}
{% endblock %}