Adding html files for assignment

parent 00b296ce
<html lang="en">
<head>
<meta charset = "UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Assignment_detail</title>
</head>
<body>
<a href="{% url 'assignments:index' %}">HOME</a>
This is {{ course_code }}
</body>
</html>
\ No newline at end of file
<html lang="en">
<head>
</head>
<body>
This is {{ course_code }}
</body>
</html>
\ No newline at end of file
<html>
<head>
</head>
<body>
</body>
</html>
\ No newline at end of file
......@@ -24,4 +24,4 @@ def index(request):
</html>
'''
return HttpResponse(html)
\ No newline at end of file
return render(request, 'assignment.html', {'course_code': 'CSCI 40'})
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment