mpeltriaux
ea7a53eb4f
* splits compensation/forms.py and /modalForms.py into individual files inside new packages * general forms stay in new files in compensation/forms * modal forms stay in new files in compensation/forms/modals
18 lines
517 B
Python
18 lines
517 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 compensation.models import CompensationDocument, EcoAccountDocument
|
|
from konova.forms.modals import NewDocumentModalForm
|
|
|
|
|
|
class NewCompensationDocumentModalForm(NewDocumentModalForm):
|
|
document_model = CompensationDocument
|
|
|
|
|
|
class NewEcoAccountDocumentModalForm(NewDocumentModalForm):
|
|
document_model = EcoAccountDocument
|