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

{% trans 'Topicvoting' %} {% if perms.openslides_topicvoting.can_manage %} {% endif %} {% trans 'Ballot paper' %} {% trans 'Results' %}

{% trans 'Topics' %}

{% if lost_topics %}

{% trans 'Attention: There are “lost topics”, that means there are some topics which do not belong to any category.' %}

{% endif %} {% for topic in topics %} {% endfor %}
{% trans 'Topic' %} {% trans 'Submitter' %} {% trans 'Category' context 'topicvoting' %} {% trans "Actions" %}
{{ topic.get_title_with_votes }} {{ topic.submitter }} {% if topic.category %}{{ topic.category }}{% else %}{% trans 'Lost topic' %}{% endif %}

{% trans 'Categories' context 'topicvoting' %}

{% for category in category_list %} {% empty %} {% endfor %}
{% trans 'Category' context 'topicvoting' %} {% trans 'Topics' %} {% trans 'Votes' %} {% trans "Actions" %}
{{ category }} {{ category.topic_set.count }} {{ category.get_votes_string }}
{% trans 'No categories available.' context 'topicvoting' %}
{% endblock %}