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/apps/home/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/apps/home/urls.py')
-rw-r--r-- | pydis_site/apps/home/urls.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py deleted file mode 100644 index 56525af8..00000000 --- a/pydis_site/apps/home/urls.py +++ /dev/null @@ -1,10 +0,0 @@ -from django.contrib import admin -from django.urls import path -from django.views.generic import TemplateView - - -app_name = 'home' -urlpatterns = [ - path('', TemplateView.as_view(template_name='home/index.html'), name='home.index'), - path('admin/', admin.site.urls) -] |