From b85ed88f3e50e420619bd7589b34e4bb277e2f55 Mon Sep 17 00:00:00 2001 From: Canh Truong Date: Mon, 25 May 2015 16:32:01 +0700 Subject: [PATCH] Wrong url in document of horizon tutorial Fix url partten in horizon tutorial document (table_actions.rst). Change-Id: I2e404f04db02cf5fa738fa3abbd1044d132f7705 Closes-Bug: #1458436 --- doc/source/topics/table_actions.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/topics/table_actions.rst b/doc/source/topics/table_actions.rst index 30d172551b..411dd57a9f 100644 --- a/doc/source/topics/table_actions.rst +++ b/doc/source/topics/table_actions.rst @@ -179,8 +179,8 @@ The complete ``urls.py`` file should look like this:: urlpatterns = patterns('', - url(r'^\?tab=mypanel_tabs_tab$', - views.IndexView.as_view(), name='mypanel_tabs'), + url(r'^$', + views.IndexView.as_view(), name='index'), url(r'^(?P[^/]+)/create_snapshot/$', views.CreateSnapshotView.as_view(), name='create_snapshot'),