* adds index form for selecting timespan and office of interest * adds timespan support for TimespanReport * fixes naive datetime issues * fixes missing error message css tag * adds/updates translations
		
			
				
	
	
		
			10 lines
		
	
	
		
			252 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			252 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
{% load i18n fontawesome_5 %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
    <div class="row">
 | 
						|
        <div class="col-sm-12 col-md-12 col-lg-12">
 | 
						|
             {% include 'form/table/generic_table_form.html' %}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
{% endblock %} |