adapting list views
This commit is contained in:
parent
0ee5fc59d3
commit
21124ec2ad
@ -2,15 +2,15 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% block additional_head %}
|
{% block additional_head %}
|
||||||
<link rel="stylesheet" href="{% static 'maps/ol.css' %}" type="text/css">
|
<link rel="stylesheet" href="{% static 'maps/ol.css' %}" type="text/css">
|
||||||
<script src="{% static 'maps/ol.js' %}"></script>
|
<script src="{% static 'maps/ol.js' %}"></script>
|
||||||
{% endblock additional_head %}
|
{% endblock additional_head %}
|
||||||
|
|
||||||
{% block title %}Lost Places{% endblock %}
|
{% block title %}Lost Places{% endblock %}
|
||||||
|
|
||||||
{% block maincontent %}
|
{% block maincontent %}
|
||||||
|
|
||||||
{% include 'partials/osm_map.html' %}
|
{% include 'partials/osm_map.html' with config=map_config %}
|
||||||
<div class="LP-PlaceList">
|
<div class="LP-PlaceList">
|
||||||
<h1 class="LP-Headline">Listing our places</h1>
|
<h1 class="LP-Headline">Listing our places</h1>
|
||||||
<ul class="LP-PlaceList__List">
|
<ul class="LP-PlaceList__List">
|
||||||
|
@ -23,7 +23,10 @@ class PlaceListView(IsAuthenticated, ListView):
|
|||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
context = super().get_context_data(**kwargs)
|
context = super().get_context_data(**kwargs)
|
||||||
context['place_map_center'] = Place.average_latlon(context['place_list'])
|
context['map_config'] = {
|
||||||
|
'point_list': context['place_list'],
|
||||||
|
'map_center': Place.average_latlon(context['place_list'])
|
||||||
|
}
|
||||||
return context
|
return context
|
||||||
|
|
||||||
class PlaceDetailView(IsAuthenticated, View):
|
class PlaceDetailView(IsAuthenticated, View):
|
||||||
|
Loading…
Reference in New Issue
Block a user