16 lines
422 B
Python
16 lines
422 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 compensation.models import EcoAccount
|
|
from konova.views.log import AbstractLogView
|
|
|
|
|
|
class EcoAccountLogView(LoginRequiredMixin, AbstractLogView):
|
|
_MODEL_CLS = EcoAccount
|