~ubuntu-branches/ubuntu/raring/horizon/raring

« back to all changes in this revision

Viewing changes to horizon/dashboards/nova/images_and_snapshots/images/urls.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-05-24 14:33:20 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120524143320-i7eswfq6ecxlvh5a
Tags: 2012.2~f1-0ubuntu1
* New usptream release. 
* Prepare for quantal:
  - debian/patches/fix-coverage-binary-name.patch: Refreshed.
* Temporarily pass the testsuite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from django.conf.urls.defaults import patterns, url
22
22
 
23
 
from .views import UpdateView, LaunchView, DetailView
 
23
from .views import UpdateView, DetailView
24
24
 
25
25
VIEWS_MOD = 'horizon.dashboards.nova.images_and_snapshots.images.views'
26
26
 
27
27
 
28
28
urlpatterns = patterns(VIEWS_MOD,
29
 
    url(r'^(?P<image_id>[^/]+)/launch/$', LaunchView.as_view(), name='launch'),
30
29
    url(r'^(?P<image_id>[^/]+)/update/$', UpdateView.as_view(), name='update'),
31
30
    url(r'^(?P<image_id>[^/]+)/$', DetailView.as_view(), name='detail'),
32
31
)