forked from fork-commit-merge/fork-commit-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fork, Commit, Merge - Easy Issue (Django) fork-commit-merge#725 Resolved
Added Hello, World! to the path: http://127.0.0.1:8000/hello/
- Loading branch information
1 parent
abbc497
commit 61a6243
Showing
16 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(88%)
tasks/django/easy/hello_world/hello_world/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-31 Bytes
(99%)
tasks/django/easy/hello_world/hello_world/__pycache__/settings.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(95%)
tasks/django/easy/hello_world/hello_world/__pycache__/urls.cpython-311.pyc
Binary file not shown.
Binary file added
BIN
+452 Bytes
tasks/django/easy/hello_world/hello_world/__pycache__/views.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(96%)
tasks/django/easy/hello_world/hello_world/__pycache__/wsgi.cpython-311.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-28 Bytes
(88%)
tasks/django/easy/hello_world/hello_world_app/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(91%)
tasks/django/easy/hello_world/hello_world_app/__pycache__/admin.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(96%)
tasks/django/easy/hello_world/hello_world_app/__pycache__/apps.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(90%)
tasks/django/easy/hello_world/hello_world_app/__pycache__/models.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
+19 Bytes
(100%)
tasks/django/easy/hello_world/hello_world_app/__pycache__/urls.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(94%)
tasks/django/easy/hello_world/hello_world_app/__pycache__/views.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(89%)
...s/django/easy/hello_world/hello_world_app/migrations/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
from django.urls import path | ||
from .views import hello_world | ||
from hello_world_app import views | ||
|
||
urlpatterns = [ | ||
path('', hello_world), | ||
# path('admin/',admin.site.urls), | ||
path('', views.hello_world, name='hello_world'), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters