lostplaces-backend/django_lostplaces/lostplaces/templates/place/place_list.html

28 lines
836 B
HTML
Raw Normal View History

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
{% 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>
{% endblock additional_head %}
{% block title %}{% translate 'All Places' %}{% endblock %}
2020-07-26 23:25:09 +02:00
{% block maincontent %}
{% include 'partials/osm_map.html' with config=mapping_config modifier='wide' %}
2020-08-10 19:10:46 +02:00
<div class="LP-PlaceList">
<h1 class="LP-Headline">{% translate 'Our lost places' %}</h1>
2020-08-10 19:10:46 +02:00
<ul class="LP-PlaceList__List">
{% for place in place_list %}
2020-09-12 12:02:25 +02:00
<li class="LP-PlaceList__Item">
2020-12-24 16:43:01 +01:00
{% include 'partials/place_teaser.html' with place=place extended=True %}
2020-09-12 12:02:25 +02:00
</li>
{% endfor %}
</ul>
2020-09-12 12:02:25 +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 %}