Fix submission page bug in subdomain
This commit is contained in:
parent
65eb49a840
commit
9a208ca108
2 changed files with 6 additions and 2 deletions
|
@ -783,7 +783,10 @@ class AllSubmissions(SubmissionsListBase):
|
|||
|
||||
def get_context_data(self, **kwargs):
|
||||
context = super(AllSubmissions, self).get_context_data(**kwargs)
|
||||
context["dynamic_update"] = context["page_obj"].number == 1
|
||||
print(self.request.organization)
|
||||
context["dynamic_update"] = (
|
||||
context["page_obj"].number == 1
|
||||
) and not self.request.organization
|
||||
context["last_msg"] = event.last()
|
||||
context["stats_update_interval"] = self.stats_update_interval
|
||||
return context
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue