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
3a1ec398
Commit
3a1ec398
authored
May 07, 2023
by
Joaquin Inigo Crisologo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added root-level static CSS file
parent
7fcf5f9f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
3 deletions
+8
-3
base.css
widget_vincentdjango/static/base.css
+3
-0
base.html
widget_vincentdjango/templates/base.html
+1
-0
settings.cpython-39.pyc
.../widget_vincentdjango/__pycache__/settings.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
...ango/widget_vincentdjango/__pycache__/urls.cpython-39.pyc
+0
-0
settings.py
widget_vincentdjango/widget_vincentdjango/settings.py
+4
-3
No files found.
widget_vincentdjango/static/base.css
0 → 100644
View file @
3a1ec398
body
{
font-family
:
"Segoe UI"
;
}
\ No newline at end of file
widget_vincentdjango/templates/base.html
View file @
3a1ec398
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
<head>
<head>
{% load static %}
{% load static %}
<meta
charset=
"utf-8"
>
<meta
charset=
"utf-8"
>
<link
rel=
"stylesheet"
href=
"{% static 'base.css' %}"
>
<link
rel=
"stylesheet"
href=
"{% block style %}{% endblock %}"
>
<link
rel=
"stylesheet"
href=
"{% block style %}{% endblock %}"
>
<title>
{% block title %}{% endblock %}
</title>
<title>
{% block title %}{% endblock %}
</title>
</head>
</head>
...
...
widget_vincentdjango/widget_vincentdjango/__pycache__/settings.cpython-39.pyc
View file @
3a1ec398
No preview for this file type
widget_vincentdjango/widget_vincentdjango/__pycache__/urls.cpython-39.pyc
View file @
3a1ec398
No preview for this file type
widget_vincentdjango/widget_vincentdjango/settings.py
View file @
3a1ec398
...
@@ -9,9 +9,10 @@ https://docs.djangoproject.com/en/3.2/topics/settings/
...
@@ -9,9 +9,10 @@ https://docs.djangoproject.com/en/3.2/topics/settings/
For the full list of settings and their values, see
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
https://docs.djangoproject.com/en/3.2/ref/settings/
"""
"""
import
os
from
pathlib
import
Path
from
pathlib
import
Path
from
dotenv
import
load_dotenv
from
dotenv
import
load_dotenv
import
os
load_dotenv
()
load_dotenv
()
...
@@ -125,8 +126,8 @@ USE_TZ = True
...
@@ -125,8 +126,8 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# Static files (CSS, JavaScript, Images)
# 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'
)
STATIC
FILES_DIRS
=
[
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