You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
794 B
28 lines
794 B
{% extends 'base_catalog.html' %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load template_filters %}
|
|
|
|
{% if single_page %}
|
|
{% block title %} {{ object_list.0.title }} {% endblock %}
|
|
{% block keywords %} {{ object_list.0.keywords }} {% endblock %}
|
|
{% block descriptions %} {{ object_list.0.descriptions }} {% endblock %}
|
|
{% endif %}
|
|
|
|
{% block content_list %}
|
|
{% if object_list %}
|
|
{% if single_page %}
|
|
{% with place=object_list.0 %}
|
|
{% include 'includes/place_object.html' %}
|
|
{% endwith %}
|
|
{% else %}
|
|
{% with object_list=object_list %}
|
|
{% include 'includes/place_list.html' %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
<h1>Nothing found</h1>
|
|
{% endif %}
|
|
|
|
{% endblock %} |