{% extends "webpage/base.html" %} {% block Titel %} See all Places {% endblock %} {% block content %}

All Places

{% load crispy_forms_tags %} {% crispy SearchForm SearchForm.helper %}
{% if object_list %}

{{ page_obj.paginator.count }} Hit(s)

{% for object in object_list %} {% endfor %}
NameStatus
{{ object }}{{ object.status }}
{% endif %} {% if is_paginated %} {% endif %}
{% endblock %}