We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4192ac9 commit f909bddCopy full SHA for f909bdd
core/views.py
@@ -1,4 +1,6 @@
1
import os
2
+
3
+import requests
4
from django.utils import timezone
5
6
from urllib.parse import urljoin
@@ -15,11 +17,14 @@
15
17
HttpResponse,
16
18
HttpResponseNotFound,
19
HttpResponseRedirect,
20
+ HttpRequest,
21
)
22
from django.shortcuts import redirect
23
from django.template.loader import render_to_string
24
from django.urls import reverse
25
+from django.utils.decorators import method_decorator
26
from django.views import View
27
+from django.views.decorators.cache import never_cache
28
from django.views.generic import TemplateView
29
30
from config.settings import ENABLE_DB_CACHE
0 commit comments