nuitdelinfo_2021/templates/index.html

60 lines
2.2 KiB
HTML
Raw Normal View History

2021-12-02 22:30:17 +01:00
{% extends 'base.html' %}
2021-12-02 19:30:42 +01:00
{% load static %}
2021-12-02 22:30:17 +01:00
{% block content %}
2021-12-03 00:06:04 +01:00
<h1>Les sauveteurs du Dunkerquois</h1>
2021-12-02 22:30:17 +01:00
<section>
<h2>Carte dynamique</h2>
2021-12-03 04:53:31 +01:00
<div id="map" style="width:100%; height:60%"></div>
2021-12-02 22:30:17 +01:00
</section>
<section>
<h2>Articles récents</h2>
<div class="flex-card">
2021-12-03 04:22:10 +01:00
{% for rescue in rescues %}
<div class="card">
<div class="inner">
<div class="img-container">
<img src="{% static 'images/sauvetage.png' %}">
</div>
<div class="content">
<p class="date">{{ rescue.date }}</p>
<p class="titre">{{ rescue.name }}</p>
<a class="btn" href="/a/{{ rescue.pk }}">Voir l'article</a>
</div>
</div>
</div>
{% endfor %}
2021-12-02 22:30:17 +01:00
</div>
</section>
2021-12-03 04:53:31 +01:00
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script>
<script>
let map = L.map('map').setView([51.127, 2.253], 7);
2021-12-03 05:22:13 +01:00
const iconRetinaUrl = '{% static 'images/marker-icon-2x.png' %}';
const iconUrl = '{% static 'images/marker-icon.png' %}';
const shadowUrl = '{% static 'images/marker-shadow.png' %}';
const iconDefault = L.icon({
iconRetinaUrl,
iconUrl,
shadowUrl,
iconSize: [25, 41],
iconAnchor: [12, 41],
popupAnchor: [1, -34],
tooltipAnchor: [16, -28],
shadowSize: [41, 41]
});
L.Marker.prototype.options.icon = iconDefault;
2021-12-03 04:53:31 +01:00
let osmLayer = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors',
maxZoom: 19
});
2021-12-03 05:22:13 +01:00
{% for rescue in rescues %}
L.marker([{{ rescue.location_long }}, {{ rescue.location_lat }}]).addTo(map).bindPopup('<a href="/a/{{ rescue.pk }}/">{{ rescue.name }}</a>');
{% endfor %}
2021-12-03 04:53:31 +01:00
map.addLayer(osmLayer);
</script>
2021-12-03 00:06:04 +01:00
{% include 'quicksearch.html' %}
2021-12-02 22:30:17 +01:00
{% endblock %}