{% extends "motion/base_motion.html" %} {% load tags %} {% load i18n %} {% load staticfiles %} {% block title %}{{ block.super }} – {% trans "Motions" %}{% endblock %} {% block content %}

{% trans "Motions" %}

{% trans "Filter" %}: {% if min_supporters > 0 %} {% trans "Need supporters" %}   {% endif %} {% trans "Without number" %}   {% trans "Status" %}:

{{ motions|length }} {% blocktrans count counter=motions|length context "number of motions"%}motion{% plural %}motions{% endblocktrans %} {% if min_supporters > 0 %} {% endif %} {% for app_info in motions %} {% with motion=app_info.motion useractions=app_info.actions %} {% if min_supporters > 0 %} {% endif %} {% endwith %} {% empty %} {% endfor %}
{% trans "Number" %} {% trans "Motion title" %}{% trans "Number of supporters" %}{% trans "Status" %} {% trans "Submitter" %} {% trans "Creation Time" %} {% trans "Actions" %}
{% if motion.number %}{{ motion.number }}{% else %}-{% endif %} {{ motion.public_version.title }}{{ motion.count_supporters }}{% if motion.status != "pub" %} {{ motion.get_status_display }}
{% endif %} {% for note in motion.notes %} {{ note }} {% if not forloop.last %}
{%endif%} {% endfor %}
{{ motion.submitter }} {{ motion.creation_time }} {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.motion.can_manage_motion %} {% if "delete" in useractions %} {% endif %} {% endif %}
{% trans "No motions available." %}
{% endblock %}