{% extends "core/base.html" %} {% load static i18n rules %} {% block page_title %} {% trans "Posters" %} {% endblock %} {% block browser_title %} {% trans "Posters" %} {% endblock %} {% block content %}
picture_as_pdf {% blocktrans with week=current_poster.week year=current_poster.year %} Week {{ week }}/{{ year }} {% endblocktrans %}
schedule {{ current_poster.valid_from }}–{{ current_poster.valid_to }}
{% else %}picture_as_pdf {% trans "There is no poster for this week." %}
{% endif %} {% endwith %}{% trans "Group" %} | {% trans "Week" %} | {% trans "Valid from ... to" %} | {% trans "Actions" %} |
---|---|---|---|
{{ poster.group }} | {{ poster.week }}/{{ poster.year }} | {{ poster.valid_from }}–{{ poster.valid_to }} | picture_as_pdf {% trans "Show" %} {% has_perm "resint.edit_poster_rule" user poster as can_edit_poster %} {% if can_edit_poster %} edit {% trans "Edit" %} {% endif %} {% has_perm "resint.delete_poster_rule" user poster as can_delete_poster %} {% if can_delete_poster %} delete {% trans "Delete" %} {% endif %} |