Merge "Set reasonable name to browser title bar"

This commit is contained in:
Jenkins 2016-12-26 10:47:50 +00:00 committed by Gerrit Code Review
commit 2fd576b864

View File

@ -11,8 +11,10 @@
# under the License.
from django.conf.urls import url
from django.utils.translation import ugettext_lazy as _
from horizon.browsers import views
title = _("Containers")
urlpatterns = [
url('', views.AngularIndexView.as_view(), name='index'),
url('', views.AngularIndexView.as_view(title=title), name='index'),
]