diff --git a/billard/urls.py b/billard/urls.py index 1c84cba..8eb4824 100644 --- a/billard/urls.py +++ b/billard/urls.py @@ -10,7 +10,6 @@ router.register(r'location_data', views.LocationDataViewSet) urlpatterns = [ url(r'^$', views.index, name='carom_index'), - #url(r'^$', views.IndexView.as_view(), name='index'), url(r'^(?P[0-9]+)/$', views.LocationDataDetailView.as_view(), name='detail'), url(r'api/v1/', include(router.urls)), ]