We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3521af7 commit bf4f83bCopy full SHA for bf4f83b
1 file changed
home/views.py
@@ -136,6 +136,13 @@ def useful_resources(request):
136
return render(request, "useful-resources.html")
137
138
139
+def codeofconduct(request):
140
+ """
141
+ A view to show the hackathon code of conduct.
142
143
+ return render(request, 'code-of-conduct.html')
144
+
145
146
def test_500(request):
147
response = render(request, '500.html')
148
response.status_code = 500
@@ -147,9 +154,3 @@ def test_404(request):
154
response.status_code = 404
155
return response
149
156
150
-
151
-def codeofconduct(request):
152
- """
153
- A view to show the hackathon code of conduct.
- return render(request, 'code-of-conduct.html')
0 commit comments