Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_vincentdjango
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
1
Merge Requests
1
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
Almira Redoble
midterm_vincentdjango
Commits
675cd13f
Commit
675cd13f
authored
Apr 29, 2023
by
Star Neptune R. Sy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
got the css file to link up
parent
4530a0fb
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
2 deletions
+7
-2
makeItBeautiful.css
widget_vincentdjango/assignments/static/makeItBeautiful.css
+3
-0
base.html
widget_vincentdjango/assignments/templates/base.html
+3
-1
makeItBeautiful.css
...t_vincentdjango/assignments/templates/makeItBeautiful.css
+0
-0
urls.py
widget_vincentdjango/assignments/urls.py
+0
-1
settings.cpython-39.pyc
.../widget_vincentdjango/__pycache__/settings.cpython-39.pyc
+0
-0
settings.py
widget_vincentdjango/widget_vincentdjango/settings.py
+1
-0
No files found.
widget_vincentdjango/assignments/static/makeItBeautiful.css
0 → 100644
View file @
675cd13f
body
{
background-color
:
rgb
(
109
,
37
,
151
)
}
\ No newline at end of file
widget_vincentdjango/assignments/templates/base.html
View file @
675cd13f
{% load static %}
<head>
<head>
<link
rel=
"stylesheet"
href=
"
templates/makeItBeautiful.css
"
>
<link
rel=
"stylesheet"
href=
"
{% static '/makeItBeautiful.css' %}
"
>
<title>
{% block webTitle %}{% endblock %}
</title>
<title>
{% block webTitle %}{% endblock %}
</title>
</head>
</head>
...
...
widget_vincentdjango/assignments/templates/makeItBeautiful.css
deleted
100644 → 0
View file @
4530a0fb
widget_vincentdjango/assignments/urls.py
View file @
675cd13f
from
django.urls
import
path
from
django.urls
import
path
from
.views
import
homeAssignmentsPage
,
AssignmentsDetailView
,
AssignmentsUpdateView
,
AssignmentsCreateView
from
.views
import
homeAssignmentsPage
,
AssignmentsDetailView
,
AssignmentsUpdateView
,
AssignmentsCreateView
urlpatterns
=
[
urlpatterns
=
[
path
(
''
,
homeAssignmentsPage
,
name
=
'homePage'
),
path
(
''
,
homeAssignmentsPage
,
name
=
'homePage'
),
path
(
'add/'
,
AssignmentsCreateView
.
as_view
(),
name
=
'assignment_add'
),
path
(
'add/'
,
AssignmentsCreateView
.
as_view
(),
name
=
'assignment_add'
),
...
...
widget_vincentdjango/widget_vincentdjango/__pycache__/settings.cpython-39.pyc
View file @
675cd13f
No preview for this file type
widget_vincentdjango/widget_vincentdjango/settings.py
View file @
675cd13f
...
@@ -126,6 +126,7 @@ USE_TZ = True
...
@@ -126,6 +126,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/3.2/howto/static-files/
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL
=
'/static/'
STATIC_URL
=
'/static/'
STATIC_ROOT
=
os
.
path
.
join
(
BASE_DIR
,
'static'
)
# Default primary key field type
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
...
...
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