Commit f2652904 by Kálmán Viktor

dashboard: keep messages with with_reload

parent 5d59c0a9
...@@ -660,6 +660,8 @@ class AjaxOperationMixin(object): ...@@ -660,6 +660,8 @@ class AjaxOperationMixin(object):
resp = super(AjaxOperationMixin, self).post( resp = super(AjaxOperationMixin, self).post(
request, extra, *args, **kwargs) request, extra, *args, **kwargs)
if request.is_ajax(): if request.is_ajax():
store = []
if not getattr(self, "with_reload", False):
store = messages.get_messages(request) store = messages.get_messages(request)
store.used = True store.used = True
return HttpResponse( return HttpResponse(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment