-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviews.py
47 lines (38 loc) · 984 Bytes
/
views.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from django.shortcuts import render
from django.views.decorators.csrf import csrf_exempt
def csrf_index(request):
html_data={}
return render(request, "csrf_protection/index.html",html_data)
@csrf_exempt
def without_protection(request):
"""
without_protection
url: csrf/without_protection/
url-shortcut: "csrf_protection:without_protection"
Parameters
----------
request : [type]
[description]
Returns
-------
[type]
[description]
"""
html_data={}
return render(request, "csrf_protection/index.html", html_data)
def with_standard_protection(request):
"""
without_protection
url: csrf/without_protection/
url-shortcut: "csrf_protection:with_standard_protection"
Parameters
----------
request : [type]
[description]
Returns
-------
[type]
[description]
"""
html_data={}
return render(request, "csrf_protection/index.html", html_data)