Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 23
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bianca Aguilar
widget_group 23
Commits
dcb68527
Commit
dcb68527
authored
May 16, 2022
by
Alissandra Gabrielle C. Tanaliga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stylesheet for assignments
parent
baf25a12
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
21 deletions
+12
-21
views.cpython-310.pyc
assignments/__pycache__/views.cpython-310.pyc
+0
-0
assignment.html
assignments/templates/assignment.html
+0
-5
assignment.html
assignments/templates/assignments/assignment.html
+11
-7
assignment_detail.html
assignments/templates/assignments/assignment_detail.html
+0
-8
views.py
assignments/views.py
+1
-1
settings.cpython-310.pyc
widget_group_23/__pycache__/settings.cpython-310.pyc
+0
-0
assignments_stylesheet.css
widget_group_23/static/css/assignments_stylesheet.css
+0
-0
No files found.
assignments/__pycache__/views.cpython-310.pyc
View file @
dcb68527
No preview for this file type
assignments/templates/assignment.html
deleted
100644 → 0
View file @
baf25a12
{% extends 'base.html' %}
{
&
block body
&
}
This is {{ course_code }}
{% endblock
&
}
\ No newline at end of file
assignments/templates/assignments/assignment.html
View file @
dcb68527
<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
assignments/templates/assignments/assignment_detail.html
deleted
100644 → 0
View file @
baf25a12
<html>
<head>
</head>
<body>
</body>
</html>
\ No newline at end of file
assignments/views.py
View file @
dcb68527
...
...
@@ -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
widget_group_23/__pycache__/settings.cpython-310.pyc
View file @
dcb68527
No preview for this file type
widget_group_23/static/css/assignments_stylesheet.css
0 → 100644
View file @
dcb68527
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment