* refactors AbstractRecordModalForm * refactors recording view for ema, intervention and eco account
17 lines
437 B
Python
17 lines
437 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: ksp-servicestelle@sgdnord.rlp.de
|
|
Created on: 19.08.22
|
|
|
|
"""
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
|
|
from ema.models import Ema
|
|
from konova.views.record import AbstractRecordView
|
|
|
|
|
|
class EmaRecordView(LoginRequiredMixin, AbstractRecordView):
|
|
_MODEL_CLS = Ema
|
|
_REDIRECT_URL = "ema:detail"
|