Added stylesheet for assignments

parent baf25a12
{% extends 'base.html' %}
{& block body &}
This is {{ course_code }}
{% endblock &}
\ No newline at end of file
<html lang="en">
<head>
{% extends 'base.html' %}
{% load static %}
</head>
<body>
This is {{ course_code }}
</body>
</html>
\ No newline at end of file
{% block styles &}
<link rel="stylesheet" href="{% static 'assignments_stylesheet.css' %}">
{& endblock &}
{& block header &}Assignments Per Course{& endblock %}
{& block body &}
This is {{ course_code }}
{% endblock &}
\ 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 render(request, 'assignment.html', {'course_code': 'CSCI 40'})
\ No newline at end of file
return render(request, 'assignments/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