Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
justinreyes_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
Justin Reyes
justinreyes_music
Commits
c78c19c6
Commit
c78c19c6
authored
Feb 13, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created views + urls per app
parent
e053f363
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
37 additions
and
6 deletions
+37
-6
urls.py
justinreyes_music/about/urls.py
+7
-0
views.py
justinreyes_music/about/views.py
+6
-2
urls.py
justinreyes_music/contact/urls.py
+7
-0
views.py
justinreyes_music/contact/views.py
+6
-2
db.sqlite3
justinreyes_music/db.sqlite3
+0
-0
urls.py
justinreyes_music/homepage/urls.py
+7
-0
views.py
justinreyes_music/homepage/views.py
+4
-2
settings.cpython-310.pyc
...ic/justinreyes_music/__pycache__/settings.cpython-310.pyc
+0
-0
urls.cpython-310.pyc
..._music/justinreyes_music/__pycache__/urls.cpython-310.pyc
+0
-0
wsgi.cpython-310.pyc
..._music/justinreyes_music/__pycache__/wsgi.cpython-310.pyc
+0
-0
No files found.
justinreyes_music/about/urls.py
0 → 100644
View file @
c78c19c6
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
""
,
views
.
index
,
name
=
"about"
),
]
justinreyes_music/about/views.py
View file @
c78c19c6
from
django.
shortcuts
import
render
from
django.
http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
"Hi, I'm Justin. I like pop, rnb, and recently I've been listening to 80's and 90's music."
)
justinreyes_music/contact/urls.py
0 → 100644
View file @
c78c19c6
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
""
,
views
.
index
,
name
=
"contact"
),
]
justinreyes_music/contact/views.py
View file @
c78c19c6
from
django.
shortcuts
import
render
from
django.
http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
"Justin Reyes. 123 St. 09178101530. justin.carlo.reyes@obf.ateneo.edu"
)
justinreyes_music/db.sqlite3
0 → 100644
View file @
c78c19c6
justinreyes_music/homepage/urls.py
0 → 100644
View file @
c78c19c6
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
""
,
views
.
index
,
name
=
"homepage"
),
]
justinreyes_music/homepage/views.py
View file @
c78c19c6
from
django.
shortcuts
import
render
from
django.
http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
"Welcome to Justin's Music Library!"
)
justinreyes_music/justinreyes_music/__pycache__/settings.cpython-310.pyc
View file @
c78c19c6
No preview for this file type
justinreyes_music/justinreyes_music/__pycache__/urls.cpython-310.pyc
0 → 100644
View file @
c78c19c6
File added
justinreyes_music/justinreyes_music/__pycache__/wsgi.cpython-310.pyc
0 → 100644
View file @
c78c19c6
File added
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