{% extends "base.html" %} {% load tags %} {% load i18n %} {% block title %}{{ block.super }} – {% trans "Motions" %}{% endblock %} {% block content %}

{% trans "Motions" %} {% if perms.motion.can_create_motion %} {% if not 'motion_stop_submitting'|get_config or perms.motion.can_manage_motion %} {% trans 'New' %} {% endif %} {% endif %} {% if perms.motion.can_manage_motion %} {% trans 'Categories' %} {# {% trans 'Import' %}#} {% endif %} PDF

{% if min_supporters > 0 %} {% endif %}
{{ motion_list|length }} {% blocktrans count counter=motion_list|length context "number of motions"%}motion{% plural %}motions{% endblocktrans %} {% if min_supporters > 0 %} {% endif %} {% for motion in motion_list %} {% if min_supporters > 0 %} {% endif %} {# TODO: user creation_time of _first_ version #} {% empty %} {% endfor %}
{% trans "#" %} {% trans "Motion title" %}{% trans "Number of supporters" %}{% trans "Status" %} {% trans "Submitter" %} {% trans "Creation Time" %} {% trans "Actions" %}
{{ motion.identifier|default:'' }} {{ motion.title }}{# motion.count_supporters #}{{ motion.state }} {% for submitter in motion.submitter.all %} {{ submitter.person }}{% if not forloop.last %}, {% endif %} {% endfor %} {{ motion.version.creation_time }} {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.motion.can_manage_motion %} {% endif %} PDF
{% trans "No motions available." %}
{% endblock %}