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