From 2afb51ff4b83f49a26142302b67c2ee36c10033b Mon Sep 17 00:00:00 2001 From: Evert Date: Thu, 28 Dec 2017 18:18:47 +0200 Subject: [PATCH] Quick url fix --- EpisodesCommunity/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EpisodesCommunity/urls.py b/EpisodesCommunity/urls.py index 682e7ff..38fc82b 100644 --- a/EpisodesCommunity/urls.py +++ b/EpisodesCommunity/urls.py @@ -36,6 +36,6 @@ from django.conf.urls.static import static urlpatterns = [ url(r'^admin/', admin.site.urls), - url(r'^show/(?P\w{1,5})/', include('Show.urls')), + url(r'^show/(?P\w{1,16})/', include('Show.urls')), url(r'^', include('LandingPage.urls')) ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)