{% extends 'stadt/stadt.html' %} {% load i18n %} {% load events groups rules %} {% block title %}Artikel - {{ block.super }}{% endblock %} {% block menu %}{% with menu='article' %}{{ block.super }}{% endwith %}{% endblock %} {% block heading_title %} {% include 'core/_heading.html' with title='Artikel' icon='sg-pen' %} {% endblock %} {% block heading_toolbar %} {% has_perm 'content.create' user as can_create %} {% if can_create %} {% url 'create-article' as url %} {% include 'core/_toolbutton.html' with label=' Artikel' url=url %} {% endif %} {% endblock %} {% block sidebar %} {% sidebar_calendar view.get_content component_id='articles-calendar' %} {% sidebar_groups user %} {% endblock %} {% block content %}
    {% for association in association_list %}
  1. {% include 'articles/_preview.html' %}
  2. {% endfor %}
{% pagination _('More Articles') %}
{% endblock %}