{% extends 'stadt/stadt.html' %} {% load events groups rules %} {% block title %}Veranstaltungen - {{ block.super }}{% endblock %} {% block menu %}{% with menu='event' %}{{ block.super }}{% endwith %}{% endblock %} {% block heading_title %} {% include 'core/_heading.html' with title='Veranstaltungen' icon='sg-pen' %} {% endblock %} {% block heading_toolbar %} {% has_perm 'content.create' user as can_create %} {% if can_create %} {% url 'create-event' as url %} {% include 'core/_toolbutton.html' with label=' Veranstaltung' url=url %} {% endif %} {% endblock %} {% block sidebar %} {% sidebar_groups user %} {% endblock %} {% block content %}
{% calendar view.get_content size="large" %}
    {% for association in association_list %}
  1. {% include 'events/_preview.html' %}
  2. {% endfor %}
{% pagination 'Weitere Veranstaltungen' %}
{% endblock %}