Changeset - c9449f619d47
[Not reviewed]
0 1 0
Tobias Schulmann - 6 years ago 2018-06-04 08:54:10
tobias.schulmann@googlemail.com
Make homepage the default route
1 file changed with 1 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/urls.py
Show inline comments
...
 
@@ -29,10 +29,8 @@ urlpatterns = [
 
    url(r'^checkin/', include('regidesk.urls')),
 
    url(r'^pages/', include('django.contrib.flatpages.urls')),
 

	
 
    url(r'^dashboard/', RedirectView.as_view(url='/')),
 
    url(r'^dashboard/', symposion.views.dashboard, name="dashboard"),
 
    url(r'^boardingpass', RedirectView.as_view(pattern_name="regidesk:boardingpass")),
 
    url(r'^$', symposion.views.dashboard, name="dashboard"),
 

	
 
]
 

	
 
if settings.DEBUG:
0 comments (0 inline, 0 general)