{% extends "base.html" %} {% load tags %} {% load i18n %} {% block title %}{{ block.super }} – {% trans "Motions" %}{% endblock %} {% block content %}
{% trans "#" %} | {% trans "Motion title" %} | {% if min_supporters > 0 %}{% trans "Number of supporters" %} | {% endif %}{% trans "Status" %} | {% trans "Submitter" %} | {% trans "Creation Time" %} | {% trans "Actions" %} |
---|---|---|---|---|---|---|
{{ motion.identifier|default:'' }} | {{ motion.title }} | {% if min_supporters > 0 %}{# motion.count_supporters #} | {% endif %}{{ motion.state }} | {% for submitter in motion.submitter.all %} {{ submitter.person }}{% if not forloop.last %}, {% endif %} {% endfor %} | {# TODO: user creation_time of _first_ version #}{{ motion.version.creation_time }} | {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.motion.can_manage_motion %} {% endif %} PDF |
{% trans "No motions available." %} |