mpeltriaux
6b839b7f60
* 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
13 lines
370 B
Python
13 lines
370 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 19.10.21
|
|
|
|
"""
|
|
|
|
# Defines the date of the legal publishing of the LKompVzVo
|
|
from django.utils import timezone
|
|
|
|
LKOMPVZVO_PUBLISH_DATE = timezone.make_aware(timezone.datetime.fromisoformat("2018-06-16"))
|