* adds netgis map client to all detail and report views * adds netgis map client to new object forms * WIP: needs functionality server-client
		
			
				
	
	
		
			16 lines
		
	
	
		
			387 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			387 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n %}
 | 
						|
 | 
						|
{% comment %}
 | 
						|
    Encapsules the rendering and initializing of a geometry view component, e.g. used in the detail views.
 | 
						|
{% endcomment %}
 | 
						|
 | 
						|
{% if geom_form.empty %}
 | 
						|
    <div class="w-100">
 | 
						|
        <div class="alert alert-info">{% trans 'No geometry added, yet.' %}</div>
 | 
						|
    </div>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
<div style="height: 70vh">
 | 
						|
    {% include 'map/client/index.html' %}
 | 
						|
</div>
 |