{% extends "base.html" %} {% load tags %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Motions" %} – {{ block.super }}{% endblock %} {% block header %} {% endblock %} {% block javascript %} {% 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 'motion_min_supporters'|get_config > 0 %} {% endif %} {% for motion in motion_list %} {% if 'motion_min_supporters'|get_config > 0 %} {% with supporters=motion.supporters|length %} {% endwith %} {% endif %} {% endfor %}
{% trans "#" %} {% trans "Motion title" %} {% trans 'Category' %} {% trans "Status" %} {% trans "Submitter" %}{% trans "Supporters" %}{% trans "Last changes" %} {% trans "Actions" %}
{{ motion.identifier|default:'' }} {{ motion }} {% if motion.category %}{{ motion.category }}{% else %}–{% endif %} {% trans motion.state.name %} {% for submitter in motion.submitter.all %} {{ submitter.person }}{% if not forloop.last %}, {% endif %} {% endfor %} {% if supporters >= 'motion_min_supporters'|get_config %} {{ supporters }} {% endif %} {% if supporters < 'motion_min_supporters'|get_config %} {{ supporters }} {% endif %} {{ motion.get_last_version.creation_time }} {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.motion.can_manage_motion %} {% endif %} PDF
{% endblock %}