diff --git a/HISTORY.rst b/HISTORY.rst index 2fdf16c8d1..e5e4821622 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -103,6 +103,8 @@ - In addition to the document view permission, the checkout detail view permission is now needed to view the list of checked out document. +- After queuing a chart for update, the view will now redirect + to the same chart. 3.0.3 (2018-08-17) ================== diff --git a/mayan/apps/mayan_statistics/views.py b/mayan/apps/mayan_statistics/views.py index 0aba311f0d..583ca1bacf 100644 --- a/mayan/apps/mayan_statistics/views.py +++ b/mayan/apps/mayan_statistics/views.py @@ -87,8 +87,8 @@ class StatisticQueueView(ConfirmView): def get_post_action_redirect(self): return reverse( - 'statistics:namespace_details', - args=(self.get_object().namespace.slug,) + 'statistics:statistic_detail', + args=(self.get_object().slug,) ) def view_action(self):