~ubuntu-branches/ubuntu/utopic/horizon/utopic

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/databases/urls.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-07-25 11:39:09 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20140725113909-b8920pdy87itn1ro
Tags: 1:2014.2~b2-0ubuntu1
* New upstream release.
* debian/patches/ubuntu_settings.patch: Refresed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from openstack_dashboard.dashboards.project.databases import views
19
19
 
20
20
 
 
21
INSTANCES = r'^(?P<instance_id>[^/]+)/%s$'
 
22
 
 
23
 
21
24
urlpatterns = patterns(
22
25
    '',
23
26
    url(r'^$', views.IndexView.as_view(), name='index'),
24
27
    url(r'^launch$', views.LaunchInstanceView.as_view(), name='launch'),
25
 
    url(r'^(?P<instance_id>[^/]+)/$', views.DetailView.as_view(),
26
 
        name='detail'),
 
28
    url(INSTANCES % '', views.DetailView.as_view(), name='detail'),
 
29
    url(INSTANCES % 'resize_volume', views.ResizeVolumeView.as_view(),
 
30
        name='resize_volume')
27
31
)