Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gabgeraldo_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
Gabriel Geraldo
gabgeraldo_music
Commits
48573cdc
Commit
48573cdc
authored
Feb 13, 2023
by
Gabriel Geraldo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created and implemented about app onto project
parent
6c4d8195
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
32 additions
and
1 deletion
+32
-1
__init__.py
gabgeraldo_music/about/__init__.py
+0
-0
__init__.cpython-311.pyc
gabgeraldo_music/about/__pycache__/__init__.cpython-311.pyc
+0
-0
urls.cpython-311.pyc
gabgeraldo_music/about/__pycache__/urls.cpython-311.pyc
+0
-0
views.cpython-311.pyc
gabgeraldo_music/about/__pycache__/views.cpython-311.pyc
+0
-0
admin.py
gabgeraldo_music/about/admin.py
+3
-0
apps.py
gabgeraldo_music/about/apps.py
+6
-0
__init__.py
gabgeraldo_music/about/migrations/__init__.py
+0
-0
models.py
gabgeraldo_music/about/models.py
+3
-0
tests.py
gabgeraldo_music/about/tests.py
+3
-0
urls.py
gabgeraldo_music/about/urls.py
+9
-0
views.py
gabgeraldo_music/about/views.py
+6
-0
urls.cpython-311.pyc
...o_music/gabgeraldo_music/__pycache__/urls.cpython-311.pyc
+0
-0
urls.py
gabgeraldo_music/gabgeraldo_music/urls.py
+2
-1
No files found.
gabgeraldo_music/about/__init__.py
0 → 100644
View file @
48573cdc
gabgeraldo_music/about/__pycache__/__init__.cpython-311.pyc
0 → 100644
View file @
48573cdc
File added
gabgeraldo_music/about/__pycache__/urls.cpython-311.pyc
0 → 100644
View file @
48573cdc
File added
gabgeraldo_music/about/__pycache__/views.cpython-311.pyc
0 → 100644
View file @
48573cdc
File added
gabgeraldo_music/about/admin.py
0 → 100644
View file @
48573cdc
from
django.contrib
import
admin
# Register your models here.
gabgeraldo_music/about/apps.py
0 → 100644
View file @
48573cdc
from
django.apps
import
AppConfig
class
AboutConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'about'
gabgeraldo_music/about/migrations/__init__.py
0 → 100644
View file @
48573cdc
gabgeraldo_music/about/models.py
0 → 100644
View file @
48573cdc
from
django.db
import
models
# Create your models here.
gabgeraldo_music/about/tests.py
0 → 100644
View file @
48573cdc
from
django.test
import
TestCase
# Create your tests here.
gabgeraldo_music/about/urls.py
0 → 100644
View file @
48573cdc
from
django.urls
import
path
from
.views
import
index
urlpatterns
=
[
path
(
''
,
index
,
name
=
'index'
)
]
app_name
=
"about"
\ No newline at end of file
gabgeraldo_music/about/views.py
0 → 100644
View file @
48573cdc
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
index
(
HttpRequest
):
return
HttpResponse
(
'Here you can find my favorite music:'
)
\ No newline at end of file
gabgeraldo_music/gabgeraldo_music/__pycache__/urls.cpython-311.pyc
View file @
48573cdc
No preview for this file type
gabgeraldo_music/gabgeraldo_music/urls.py
View file @
48573cdc
...
...
@@ -19,5 +19,6 @@ from django.urls import include, path
urlpatterns
=
[
path
(
'admin/'
,
admin
.
site
.
urls
),
path
(
'homepage/'
,
include
(
'homepage.urls'
,
namespace
=
'homepage'
)),
path
(
'contact/'
,
include
(
'contact.urls'
,
namespace
=
'contact'
))
path
(
'contact/'
,
include
(
'contact.urls'
,
namespace
=
'contact'
)),
path
(
'about/'
,
include
(
'about.urls'
,
namespace
=
'about'
))
]
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