Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
library-app-django
Project
Project
Details
Activity
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
Ilham Maulana
library-app-django
Commits
e3510a5c
Commit
e3510a5c
authored
Jul 02, 2024
by
impfundev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: project urls
parent
1e5a523b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
urls.py
config/urls.py
+1
-5
requirements.txt
requirements.txt
+0
-0
No files found.
config/urls.py
View file @
e3510a5c
...
@@ -17,9 +17,8 @@ Including another URLconf
...
@@ -17,9 +17,8 @@ Including another URLconf
from
django.contrib
import
admin
from
django.contrib
import
admin
from
django.urls
import
path
from
django.urls
import
path
from
django.conf.urls
import
include
,
static
from
django.conf.urls
import
include
from
dashboards.views
import
home
from
dashboards.views
import
home
from
django.conf
import
settings
urlpatterns
=
[
urlpatterns
=
[
path
(
""
,
home
,
name
=
"homepage"
),
path
(
""
,
home
,
name
=
"homepage"
),
...
@@ -27,6 +26,3 @@ urlpatterns = [
...
@@ -27,6 +26,3 @@ urlpatterns = [
path
(
"admin/"
,
admin
.
site
.
urls
),
path
(
"admin/"
,
admin
.
site
.
urls
),
path
(
"auth/"
,
include
(
"authentications.urls"
)),
path
(
"auth/"
,
include
(
"authentications.urls"
)),
]
]
if
settings
.
DEBUG
:
urlpatterns
+=
static
(
settings
.
STATIC_URL
,
document_root
=
settings
.
STATIC_ROOT
)
requirements.txt
View file @
e3510a5c
B
asgiref
==3.8.1
B
asgiref
==3.8.1
...
...
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