Empty string should not be used in url pattern
Change-Id: Ieb2a32007da0181370b97ad8fa03dc8dec82cafb
This commit is contained in:
parent
d07c974d66
commit
248ad6232d
@ -17,6 +17,5 @@ from django.conf.urls import url
|
|||||||
from vitrage_dashboard.admin_alarms import views
|
from vitrage_dashboard.admin_alarms import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
@ -18,6 +18,5 @@ from vitrage_dashboard.admin_dashboard import views
|
|||||||
import vitrage_dashboard.api.vitrage_rest_api # noqa
|
import vitrage_dashboard.api.vitrage_rest_api # noqa
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
@ -17,6 +17,5 @@ from django.conf.urls import url
|
|||||||
from vitrage_dashboard.admin_entities import views
|
from vitrage_dashboard.admin_entities import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
@ -17,6 +17,5 @@ from django.conf.urls import url
|
|||||||
from vitrage_dashboard.alarms import views
|
from vitrage_dashboard.alarms import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
@ -18,6 +18,5 @@ import vitrage_dashboard.api.vitrage_rest_api # noqa
|
|||||||
from vitrage_dashboard.dashboard import views
|
from vitrage_dashboard.dashboard import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
@ -17,6 +17,5 @@ from django.conf.urls import url
|
|||||||
from vitrage_dashboard.entities import views
|
from vitrage_dashboard.entities import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
@ -17,6 +17,5 @@ from django.conf.urls import url
|
|||||||
from vitrage_dashboard.templates import views
|
from vitrage_dashboard.templates import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
'',
|
|
||||||
url(r'^$', views.IndexView.as_view(), name='index'),
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user