aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-08 15:45:14 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-08 15:45:14 +0100
commit911f37e04c33c3b42c95da195b53f933c9c367f6 (patch)
tree1d7361d47f0563fc6900585a8aed33f3abbe2fdd /pydis_site/apps
parentAdd base templates for django-wiki, as provided (diff)
Pushing before work is over
Diffstat (limited to 'pydis_site/apps')
-rw-r--r--pydis_site/apps/home/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py
index ede0531e..4ed95651 100644
--- a/pydis_site/apps/home/urls.py
+++ b/pydis_site/apps/home/urls.py
@@ -7,5 +7,5 @@ app_name = 'home'
urlpatterns = [
path('admin/', admin.site.urls),
path('wiki/', include('wiki.urls')),
- path('/', TemplateView.as_view(template_name='home/index.html'), name='index'),
+ path('', TemplateView.as_view(template_name='home/index.html'), name='index'),
]