mpeltriaux
2f67c2f569
* refactors intervention/forms and ../modalForms into individual files in separated packages * forms.py has been renamed into intervention.py, now can be found as intervention/forms/intervention.py * modalForms.py has been split into individual files living in modals package, can be found as intervention/forms/modals/...
13 lines
394 B
Python
13 lines
394 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: ksp-servicestelle@sgdnord.rlp.de
|
|
Created on: 18.08.22
|
|
|
|
"""
|
|
from intervention.models import InterventionDocument
|
|
from konova.forms.modals import NewDocumentModalForm
|
|
|
|
|
|
class NewInterventionDocumentModalForm(NewDocumentModalForm):
|
|
document_model = InterventionDocument |