aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/views.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/register/views.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ctrack/register/views.py b/ctrack/register/views.py
index 07673b9..db018b2 100644
--- a/ctrack/register/views.py
+++ b/ctrack/register/views.py
@@ -77,6 +77,10 @@ class SingleDateTimeEventCreate(FormView):
form_class = CreateSimpleDateTimeEventForm
success_url = reverse_lazy("organisations:list")
+ def get_success_url(self):
+ self.success_url = reverse_lazy("organisations:detail", args=[self.kwargs["org_slug"]])
+ return super().get_success_url()
+
def get_context_data(self, **kwargs):
context = super().get_context_data()
if self.kwargs.get("org_slug"):