{% 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" %} | {% if perms.motion.can_manage_motion or perms.core.can_manage_projector %}{% trans "Actions" %} | {% endif %}
---|---|---|---|---|---|---|---|
{{ motion.identifier|default:'' }} {% if motion.is_amendment %} {{ 'motion_amendments_prefix'|get_config }} {% endif %} | {{ motion.title }} {% for tag in motion.tags.all %} {{ tag }} {% endfor %} | {% 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 motion.get_last_version.version_number != motion.active_version.version_number %} {% endif %} | {% if perms.motion.can_manage_motion or perms.core.can_manage_projector %}{% if perms.core.can_manage_projector %} {% endif %} {% if perms.motion.can_manage_motion %} {% endif %} | {% endif %}