2018-03-04 20:23:45 +01:00
|
|
|
class SessionResetMixin:
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
if 'session_pk' in request.session:
|
|
|
|
del request.session['session_pk']
|
|
|
|
|
|
|
|
return super().dispatch(request, *args, **kwargs)
|
2018-03-04 21:45:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
class QuickActionsMixin:
|
|
|
|
def get_quick_actions(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
context['quick_actions'] = self.get_quick_actions()
|
|
|
|
return context
|