2020-07-26 23:25:09 +02:00
|
|
|
{% extends 'global.html'%}
|
2020-07-26 23:42:31 +02:00
|
|
|
{% load static %}
|
2020-10-01 23:05:34 +02:00
|
|
|
{% load i18n %}
|
2020-07-26 23:25:09 +02:00
|
|
|
|
2020-08-22 09:23:12 +02:00
|
|
|
{% block additional_head %}
|
2020-09-12 12:02:25 +02:00
|
|
|
<link rel="stylesheet" href="{% static 'maps/ol.css' %}" type="text/css">
|
|
|
|
<script src="{% static 'maps/ol.js' %}"></script>
|
2020-08-22 09:23:12 +02:00
|
|
|
{% endblock additional_head %}
|
|
|
|
|
2020-10-11 21:27:27 +02:00
|
|
|
{% block title %}{% trans 'All Places' %}{% endblock %}
|
2020-07-28 23:45:28 +02:00
|
|
|
|
2020-07-26 23:25:09 +02:00
|
|
|
{% block maincontent %}
|
2020-08-22 09:23:12 +02:00
|
|
|
|
2020-09-13 20:15:49 +02:00
|
|
|
{% include 'partials/osm_map.html' with config=mapping_config %}
|
2020-08-10 19:10:46 +02:00
|
|
|
<div class="LP-PlaceList">
|
2020-10-11 21:27:27 +02:00
|
|
|
<h1 class="LP-Headline">{% trans 'Our lost places' %}</h1>
|
2020-08-10 19:10:46 +02:00
|
|
|
<ul class="LP-PlaceList__List">
|
2020-08-12 23:20:32 +02:00
|
|
|
{% for place in place_list %}
|
2020-09-12 12:02:25 +02:00
|
|
|
<li class="LP-PlaceList__Item">
|
|
|
|
<a href="{% url 'place_detail' pk=place.pk %}" class="LP-Link">
|
2020-10-12 20:57:04 +02:00
|
|
|
{% include 'partials/place_teaser.html' with place=place extended=True %}
|
2020-09-12 12:02:25 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
2020-08-12 23:20:32 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2020-09-12 12:02:25 +02:00
|
|
|
|
2020-08-14 09:45:00 +02:00
|
|
|
{% include 'partials/nav/pagination.html' %}
|
|
|
|
|
2020-08-10 19:10:46 +02:00
|
|
|
</div>
|
2020-07-26 23:25:09 +02:00
|
|
|
{% endblock maincontent %}
|