mirror of https://gitlab.crans.org/bde/nk20
Ability to disable cache storage
This commit is contained in:
parent
c64347def7
commit
3fd99ebac7
|
@ -249,6 +249,9 @@ class ClubAddMemberView(LoginRequiredMixin, CreateView):
|
|||
context = super().get_context_data(**kwargs)
|
||||
context['formset'] = MemberFormSet()
|
||||
context['helper'] = FormSetHelper()
|
||||
|
||||
context['no_cache'] = True
|
||||
|
||||
return context
|
||||
|
||||
def post(self, request, *args, **kwargs):
|
||||
|
|
|
@ -28,6 +28,9 @@ class TransactionCreate(LoginRequiredMixin, CreateView):
|
|||
context = super().get_context_data(**kwargs)
|
||||
context['title'] = _('Transfer money from your account '
|
||||
'to one or others')
|
||||
|
||||
context['no_cache'] = True
|
||||
|
||||
return context
|
||||
|
||||
def get_form(self, form_class=None):
|
||||
|
@ -146,6 +149,8 @@ class ConsoView(LoginRequiredMixin, CreateView):
|
|||
template_type=template_type)
|
||||
context['title'] = template_type
|
||||
|
||||
context['no_cache'] = True
|
||||
|
||||
return context
|
||||
|
||||
def get_success_url(self):
|
||||
|
|
|
@ -22,6 +22,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="msapplication-config" content="{% static "favicon/browserconfig.xml" %}">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
{% if no_cache %}
|
||||
<meta name="turbolinks-cache-control" content="no-cache">
|
||||
{% endif %}
|
||||
|
||||
{# Bootstrap CSS #}
|
||||
<link rel="stylesheet"
|
||||
|
|
Loading…
Reference in New Issue