{% 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 "#" %} | {% trans "Motion title" %} | {% trans 'Category' %} | {% trans "Status" %} | {% trans "Submitter" %} | {% if 'motion_min_supporters'|get_config > 0 %}{% trans "Supporters" %} | {% endif %}{% 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 'motion_min_supporters'|get_config > 0 %} {% with supporters=motion.supporters|length %}{% if supporters >= 'motion_min_supporters'|get_config %} {{ supporters }} {% endif %} {% if supporters < 'motion_min_supporters'|get_config %} {{ supporters }} {% endif %} | {% endwith %} {% endif %}{{ motion.get_last_version.creation_time }} | {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.motion.can_manage_motion %} {% endif %} PDF |