{% extends 'stadt/stadt.html' %} {% load i18n %} {% block title %}Suche - {{ block.super }}{% endblock %} {% block heading_title %} {% include 'core/_heading.html' with title='Beiträge' icon='sg-search' %} {% endblock %} {% block content %}
{% if object_list %}
    {% for result in object_list %}
  1. {% if result.model_name == "association" %} {% include 'associations/_preview.html' with association=result.object %} {% elif result.model_name == "group" %} {% include 'groups/_preview.html' with group=result.object link=True %} {% endif %}
  2. {% endfor %}
{% pagination _('More Items') %} {% else %}

Leider haben wir keine passenden Beiträge für deine Suchanfrage gefunden.

{% endif %}
{% endblock %}