Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
drewidquival_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
Andrew Justin C. Idquival
drewidquival_music
Commits
7580e958
Commit
7580e958
authored
Mar 01, 2023
by
Andrew Justin C. Idquival
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added view urls for about and contact
parent
8a7d4032
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
2 deletions
+27
-2
urls.py
drewidquival_music/about/urls.py
+8
-0
views.py
drewidquival_music/about/views.py
+6
-1
urls.py
drewidquival_music/contact/urls.py
+8
-0
views.py
drewidquival_music/contact/views.py
+5
-1
No files found.
drewidquival_music/about/urls.py
0 → 100644
View file @
7580e958
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"about"
\ No newline at end of file
drewidquival_music/about/views.py
View file @
7580e958
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
"My favorite genres are usually game OSTs and some hiphop songs. Artists that I usually "
"listen to are J Cole, Hiroyuki Sawano and J^KE."
)
# Create your views here.
drewidquival_music/contact/urls.py
0 → 100644
View file @
7580e958
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
app_name
=
"contact"
\ No newline at end of file
drewidquival_music/contact/views.py
View file @
7580e958
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
"My email is imdeadbruh@jeemail.com. My phone number is 09694206969. My address is 10 San Han "
"Street , WHATTOPUT Sbd., Juley City, Pelepinas"
)
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