{% extends "core/base.html" %} {% load static i18n %} {% block content %}

{% trans "Posters" %}

{% for group in poster_groups %}
{{ group.name }}
{% with current_poster=group.current_poster %} {% if current_poster %}

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 %}
{% endfor %}
add {% trans "Upload new poster" %}

{% trans "All uploaded posters" %}

{% for poster in poster_list %} {% endfor %}
{% 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" %} delete {% trans "Delete" %}
{% endblock %}