Use statics...

This commit is contained in:
Yohann D'ANELLO 2020-05-06 19:04:14 +02:00
parent a47d9a9cb6
commit 3128e236fb
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ urlpatterns = [
path('api/', include('api.urls')),
re_path(r'^%s(?P<path>.*)$' % re.escape(settings.STATIC_URL.lstrip('/')), serve),
re_path(r'^static/(?P<path>.*)$', serve),
# Supporting old paths
path('inscription/', RedirectView.as_view(pattern_name="member:signup")),