diff options
| author | Bobby <[email protected]> | 2022-08-02 01:02:55 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-08-02 01:02:55 +0530 |
| commit | 469a4bbba87c4cc9f328f4324647469c482d7dae (patch) | |
| tree | 7b3c4b7ff2963804c91e2efe71ec90784df598d1 /userpages/urls.py | |
| parent | e52365a079a5fb2489a435c5ba3081d067d76ba2 (diff) | |
| download | thatcomputerscientist-469a4bbba87c4cc9f328f4324647469c482d7dae.tar.xz thatcomputerscientist-469a4bbba87c4cc9f328f4324647469c482d7dae.zip | |
init:userpages
Diffstat (limited to 'userpages/urls.py')
| -rw-r--r-- | userpages/urls.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/userpages/urls.py b/userpages/urls.py new file mode 100644 index 00000000..f1c55f96 --- /dev/null +++ b/userpages/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from . import views + +# Configure the URL patterns for username.* +urlpatterns = [ + # match for username.* + path('', views.home, name='home'), +] |
