diff --git a/apps/note/views.py b/apps/note/views.py
index 0312f11fb9845fd2851338e6b84923cdbf799a46..6aadb4ab674f96f5708dbcd88649aa202463c1a8 100644
--- a/apps/note/views.py
+++ b/apps/note/views.py
@@ -188,9 +188,6 @@ class ConsoView(ProtectQuerysetMixin, LoginRequiredMixin, SingleTableView):
         ).order_by('name').all()
         context['polymorphic_ctype'] = ContentType.objects.get_for_model(RecurrentTransaction).pk
 
-        # select2 compatibility
-        context['no_cache'] = True
-
         return context
 
 
diff --git a/apps/treasury/views.py b/apps/treasury/views.py
index 480ed290c2da9802b0a9b5859f6d397295f6602c..c22652892a8f46c4c58c2526e00a0386596153e0 100644
--- a/apps/treasury/views.py
+++ b/apps/treasury/views.py
@@ -57,7 +57,6 @@ class InvoiceCreateView(ProtectQuerysetMixin, ProtectedCreateView):
         form_set = ProductFormSet(instance=form.instance)
         context['formset'] = form_set
         context['helper'] = ProductFormSetHelper()
-        context['no_cache'] = True
 
         return context
 
@@ -125,7 +124,6 @@ class InvoiceUpdateView(ProtectQuerysetMixin, LoginRequiredMixin, UpdateView):
         form_set = ProductFormSet(instance=self.object)
         context['formset'] = form_set
         context['helper'] = ProductFormSetHelper()
-        context['no_cache'] = True
 
         if self.object.locked:
             for field_name in form.fields:
diff --git a/note_kfet/templates/base.html b/note_kfet/templates/base.html
index 671661e307893904cede00c77b270acdd8a39a25..52c48b1be44ff5e06679bbfa385ed554f66fe69c 100644
--- a/note_kfet/templates/base.html
+++ b/note_kfet/templates/base.html
@@ -22,12 +22,6 @@ 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">
-
-    {# Disable turbolink cache for some pages #}
-    {% if no_cache %}
-        <meta name="turbolinks-cache-control" content="no-cache">
-    {% endif %}
-
     {# Bootstrap CSS #}
     <link rel="stylesheet"
           href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"