We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7afa126 commit b680991Copy full SHA for b680991
views.py
@@ -6,9 +6,9 @@
6
def root(req: HttpRequest) -> HttpResponse:
7
res = HttpResponse()
8
res.headers['Content-Type'] = 'text/html; charset=utf-8'
9
- res.write("<!DOCTYPE html>");
+ res.write("<!DOCTYPE html>")
10
res.write("<html><head></head><body>")
11
- res.write("<p>mini_django seems to be working!</p>");
+ res.write("<p>mini_django seems to be working!</p>")
12
res.write("<p>This is the page at the root path, try another path</p>")
13
res.write("<p>Try /dj4e /js4e or generate errors with /missing or /broken</p>")
14
res.write("</body></html>")
0 commit comments