diff options
author | 2019-04-13 16:16:11 +0200 | |
---|---|---|
committer | 2019-04-13 16:16:11 +0200 | |
commit | f29472a56f925127a077c4cadcc13fa852dc665b (patch) | |
tree | 34fcafe8e98ab0d9babc87f2118250ecbe697bda /pydis_site/urls.py | |
parent | Added hrefs for the cards (diff) |
refactoring slightly to use a class-based view, changing home to main. Ready to write the API search stuff now.
Diffstat (limited to 'pydis_site/urls.py')
-rw-r--r-- | pydis_site/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/urls.py b/pydis_site/urls.py index c68375da..e4ef058b 100644 --- a/pydis_site/urls.py +++ b/pydis_site/urls.py @@ -2,5 +2,5 @@ from django.urls import include, path urlpatterns = ( - path('', include('pydis_site.apps.home.urls', namespace='home')), + path('', include('pydis_site.apps.main.urls', namespace='home')), ) |