Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_django unchained
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
1
Merge Requests
1
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
Jose Emmanuel B. Laurel
widget_django unchained
Commits
d03499f7
Commit
d03499f7
authored
Mar 06, 2022
by
Jose Emmanuel B. Laurel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified Homepage App
parent
d58c90f0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
3 deletions
+12
-3
__init__.cpython-39.pyc
...go_unchained/homepage/__pycache__/__init__.cpython-39.pyc
+0
-0
urls.cpython-39.pyc
...django_unchained/homepage/__pycache__/urls.cpython-39.pyc
+0
-0
views.cpython-39.pyc
...jango_unchained/homepage/__pycache__/views.cpython-39.pyc
+0
-0
urls.py
widget_django_unchained/homepage/urls.py
+7
-0
views.py
widget_django_unchained/homepage/views.py
+3
-2
urls.cpython-39.pyc
...d/widget_django_unchained/__pycache__/urls.cpython-39.pyc
+0
-0
urls.py
widget_django_unchained/widget_django_unchained/urls.py
+2
-1
No files found.
widget_django_unchained/homepage/__pycache__/__init__.cpython-39.pyc
0 → 100644
View file @
d03499f7
File added
widget_django_unchained/homepage/__pycache__/urls.cpython-39.pyc
0 → 100644
View file @
d03499f7
File added
widget_django_unchained/homepage/__pycache__/views.cpython-39.pyc
0 → 100644
View file @
d03499f7
File added
widget_django_unchained/homepage/urls.py
0 → 100644
View file @
d03499f7
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
index
,
name
=
'index'
)
]
\ No newline at end of file
widget_django_unchained/homepage/views.py
View file @
d03499f7
from
django.
shortcuts
import
render
from
django.
http
import
HttpResponse
# Create your views here.
def
index
(
request
):
return
HttpResponse
(
"Welcome to Widget!"
)
widget_django_unchained/widget_django_unchained/__pycache__/urls.cpython-39.pyc
View file @
d03499f7
No preview for this file type
widget_django_unchained/widget_django_unchained/urls.py
View file @
d03499f7
...
...
@@ -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