Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_tee jays angelos
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
Ramon Angelo Enriquez
widget_tee jays angelos
Commits
3f04c7eb
Commit
3f04c7eb
authored
Mar 04, 2022
by
Ramon Angelo Enriquez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Homepage App
parent
95568742
Pipeline
#2257
canceled with stages
Changes
13
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
31 additions
and
1 deletion
+31
-1
__init__.py
widgetsproject/homepage/__init__.py
+0
-0
__init__.cpython-39.pyc
widgetsproject/homepage/__pycache__/__init__.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
widgetsproject/homepage/__pycache__/urls.cpython-39.pyc
+0
-0
views.cpython-39.pyc
widgetsproject/homepage/__pycache__/views.cpython-39.pyc
+0
-0
admin.py
widgetsproject/homepage/admin.py
+3
-0
apps.py
widgetsproject/homepage/apps.py
+6
-0
__init__.py
widgetsproject/homepage/migrations/__init__.py
+0
-0
models.py
widgetsproject/homepage/models.py
+3
-0
tests.py
widgetsproject/homepage/tests.py
+3
-0
urls.py
widgetsproject/homepage/urls.py
+7
-0
views.py
widgetsproject/homepage/views.py
+7
-0
urls.cpython-39.pyc
...etsproject/widgetsproject/__pycache__/urls.cpython-39.pyc
+0
-0
urls.py
widgetsproject/widgetsproject/urls.py
+2
-1
No files found.
widgetsproject/homepage/__init__.py
0 → 100644
View file @
3f04c7eb
widgetsproject/homepage/__pycache__/__init__.cpython-39.pyc
0 → 100644
View file @
3f04c7eb
File added
widgetsproject/homepage/__pycache__/urls.cpython-39.pyc
0 → 100644
View file @
3f04c7eb
File added
widgetsproject/homepage/__pycache__/views.cpython-39.pyc
0 → 100644
View file @
3f04c7eb
File added
widgetsproject/homepage/admin.py
0 → 100644
View file @
3f04c7eb
from
django.contrib
import
admin
# Register your models here.
widgetsproject/homepage/apps.py
0 → 100644
View file @
3f04c7eb
from
django.apps
import
AppConfig
class
HomepageConfig
(
AppConfig
):
default_auto_field
=
'django.db.models.BigAutoField'
name
=
'Homepage'
widgetsproject/homepage/migrations/__init__.py
0 → 100644
View file @
3f04c7eb
widgetsproject/homepage/models.py
0 → 100644
View file @
3f04c7eb
from
django.db
import
models
# Create your models here.
widgetsproject/homepage/tests.py
0 → 100644
View file @
3f04c7eb
from
django.test
import
TestCase
# Create your tests here.
widgetsproject/homepage/urls.py
0 → 100644
View file @
3f04c7eb
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
""
,
views
.
index
,
name
=
"homepage"
)
]
widgetsproject/homepage/views.py
0 → 100644
View file @
3f04c7eb
from
django.http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
"Welcome to Widget!"
)
widgetsproject/widgetsproject/__pycache__/urls.cpython-39.pyc
View file @
3f04c7eb
No preview for this file type
widgetsproject/widgetsproject/urls.py
View file @
3f04c7eb
...
...
@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from
django.contrib
import
admin
from
django.urls
import
path
from
django.urls
import
include
,
path
urlpatterns
=
[
path
(
'homepage/'
,
include
(
"homepage.urls"
)),
path
(
'admin/'
,
admin
.
site
.
urls
),
]
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