Fix no cache in ConsoView
This commit is contained in:
parent
d8b510a0be
commit
9a0d74c18b
1 changed files with 2 additions and 2 deletions
|
|
@ -140,6 +140,8 @@ class ConsoView(LoginRequiredMixin, CreateView):
|
|||
context = super().get_context_data(**kwargs)
|
||||
context['template_types'] = TransactionCategory.objects.all()
|
||||
|
||||
context['no_cache'] = True
|
||||
|
||||
if 'template_type' not in self.kwargs.keys():
|
||||
return context
|
||||
|
||||
|
|
@ -149,8 +151,6 @@ class ConsoView(LoginRequiredMixin, CreateView):
|
|||
template_type=template_type)
|
||||
context['title'] = template_type
|
||||
|
||||
context['no_cache'] = True
|
||||
|
||||
return context
|
||||
|
||||
def get_success_url(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue