16 lines
		
	
	
		
			431 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			431 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'global.html'%}
 | 
						|
 | 
						|
{% load static %}
 | 
						|
{% load i18n %}
 | 
						|
{% block additional_head %}
 | 
						|
<link rel="stylesheet" href="{% static 'maps/ol.css' %}" type="text/css">
 | 
						|
<script src="{% static 'maps/ol.js' %}"></script>
 | 
						|
{% endblock additional_head %}
 | 
						|
 | 
						|
# {% block title %}{% trans 'Map' %}{% endblock %}
 | 
						|
 | 
						|
{% block maincontent %}
 | 
						|
 | 
						|
{% include 'partials/osm_map.html' with config=mapping_config modifier='full' %}
 | 
						|
 | 
						|
{% endblock maincontent %} |