Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rafamendoza_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
Rafa Mendoza
rafamendoza_music
Commits
8ef8cedc
Commit
8ef8cedc
authored
Feb 13, 2023
by
Rafa Mendoza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding about page
parent
5e68bfb4
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
28 additions
and
0 deletions
+28
-0
.DS_Store
rafamendoza_music/about/.DS_Store
+0
-0
__init__.py
rafamendoza_music/about/__init__.py
+0
-0
__init__.cpython-39.pyc
rafamendoza_music/about/__pycache__/__init__.cpython-39.pyc
+0
-0
admin.cpython-39.pyc
rafamendoza_music/about/__pycache__/admin.cpython-39.pyc
+0
-0
apps.cpython-39.pyc
rafamendoza_music/about/__pycache__/apps.cpython-39.pyc
+0
-0
models.cpython-39.pyc
rafamendoza_music/about/__pycache__/models.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
rafamendoza_music/about/__pycache__/urls.cpython-39.pyc
+0
-0
views.cpython-39.pyc
rafamendoza_music/about/__pycache__/views.cpython-39.pyc
+0
-0
admin.py
rafamendoza_music/about/admin.py
+3
-0
apps.py
rafamendoza_music/about/apps.py
+6
-0
__init__.py
rafamendoza_music/about/migrations/__init__.py
+0
-0
__init__.cpython-39.pyc
...usic/about/migrations/__pycache__/__init__.cpython-39.pyc
+0
-0
models.py
rafamendoza_music/about/models.py
+3
-0
tests.py
rafamendoza_music/about/tests.py
+3
-0
urls.py
rafamendoza_music/about/urls.py
+7
-0
views.py
rafamendoza_music/about/views.py
+6
-0
No files found.
rafamendoza_music/about/.DS_Store
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/__init__.py
0 → 100644
View file @
8ef8cedc
rafamendoza_music/about/__pycache__/__init__.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/__pycache__/admin.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/__pycache__/apps.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/__pycache__/models.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/__pycache__/urls.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/__pycache__/views.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/admin.py
0 → 100644
View file @
8ef8cedc
from
django.contrib
import
admin
# Register your models here.
rafamendoza_music/about/apps.py
0 → 100644
View file @
8ef8cedc
from
django.apps
import
AppConfig
class
AboutConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'about'
rafamendoza_music/about/migrations/__init__.py
0 → 100644
View file @
8ef8cedc
rafamendoza_music/about/migrations/__pycache__/__init__.cpython-39.pyc
0 → 100644
View file @
8ef8cedc
File added
rafamendoza_music/about/models.py
0 → 100644
View file @
8ef8cedc
from
django.db
import
models
# Create your models here.
rafamendoza_music/about/tests.py
0 → 100644
View file @
8ef8cedc
from
django.test
import
TestCase
# Create your tests here.
rafamendoza_music/about/urls.py
0 → 100644
View file @
8ef8cedc
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
),
]
# This might be needed, depending on your Django version
app_name
=
"about"
rafamendoza_music/about/views.py
0 → 100644
View file @
8ef8cedc
from
django.http
import
HttpResponse
def
index
(
request
):
return
HttpResponse
(
'I am Rafa Mendoza. As the youngest child, I always relied on my siblings, even in terms of music. My music preferences include anything that my brothers and sister listen to.'
)
# Create your views here.
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