mpeltriaux
7356c10f34
* enables public access to reports for unrecorded old entries if their binding_date < 16.06.2018
13 lines
377 B
Python
13 lines
377 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")).date()
|