Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nich_pardines_music
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
Nicholo Patrick C. Pardines
nich_pardines_music
Commits
ca9a362a
Commit
ca9a362a
authored
Feb 13, 2023
by
Nicholo Pardines
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved about urls.py to correct directory and added urls.py code
parent
b72234c9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
urls.py
nich_pardines_music/about/urls.py
+0
-0
urls.py
nich_pardines_music/contact/urls.py
+12
-0
urls.py
nich_pardines_music/homepage/urls.py
+12
-0
No files found.
nich_pardines_music/about/
migrations/
urls.py
→
nich_pardines_music/about/urls.py
View file @
ca9a362a
File moved
nich_pardines_music/contact/urls.py
View file @
ca9a362a
from
django.urls
import
path
from
.views
import
contactInfo
# .views as in ./views and then we import the index function
# which we just created
urlpatterns
=
[
path
(
''
,
contactInfo
,
name
=
"contact"
),
]
# built in function
app_name
=
"contact"
\ No newline at end of file
nich_pardines_music/homepage/urls.py
View file @
ca9a362a
from
django.urls
import
path
from
.views
import
greeting
# .views as in ./views and then we import the index function
# which we just created
urlpatterns
=
[
path
(
''
,
greeting
,
name
=
'greet'
),
]
# built in function
app_name
=
"homepage"
\ No newline at end of file
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