{% extends 'stadt/stadt.html' %} {% load i18n %} {% block title %}Veranstaltungen - {{ block.super }}{% 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 create_url %} {% include 'core/_toolbutton.html' with label=' Veranstaltung' url=create_url %} {% endif %} {% endblock %} {% block sidebar %} {% load groups %} {% sidebar_groups user %} {% endblock %} {% block content %}
{% load events %} {% calendar view.get_content size="large" %}
    {% for association in association_list %}
  1. {% include 'events/_preview.html' %}
  2. {% endfor %}
{% pagination _('More Events') %}
{% endblock %}