* refactors deduction views on interventions and eco accounts from function to class based * introduces basic checks on shared access and permission on BaseView on dispatching --> checks shall be overwritten on inheriting classes
27 lines
867 B
Python
27 lines
867 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 intervention.models import Intervention
|
|
from konova.views.deduction import AbstractNewDeductionView, AbstractEditDeductionView, AbstractRemoveDeductionView
|
|
|
|
|
|
class NewInterventionDeductionView(LoginRequiredMixin, AbstractNewDeductionView):
|
|
_MODEL = Intervention
|
|
_REDIRECT_URL = "intervention:detail"
|
|
|
|
|
|
class EditInterventionDeductionView(LoginRequiredMixin, AbstractEditDeductionView):
|
|
_MODEL = Intervention
|
|
_REDIRECT_URL = "intervention:detail"
|
|
|
|
|
|
class RemoveInterventionDeductionView(LoginRequiredMixin, AbstractRemoveDeductionView):
|
|
_MODEL = Intervention
|
|
_REDIRECT_URL = "intervention:detail"
|