diff --git a/apps/note/views.py b/apps/note/views.py
index c7e98ddcf8eda5c9c4974671f10969215e12788e..9a23a2318e4f92d46b23795847d544249d0d35a7 100644
--- a/apps/note/views.py
+++ b/apps/note/views.py
@@ -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):