~ubuntu-branches/ubuntu/trusty/horizon/trusty-updates

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-03-06 16:53:28 UTC
  • mfrom: (1.1.37)
  • Revision ID: package-import@ubuntu.com-20140306165328-w2vgmtfriqlhp27m
Tags: 1:2014.1~b3-0ubuntu1
* New upstream milestone release.
* d/static/*: Refreshed assets for new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 
2
 
 
3
# Copyright 2012 Nebula, Inc.
 
4
#
 
5
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
6
#    not use this file except in compliance with the License. You may obtain
 
7
#    a copy of the License at
 
8
#
 
9
#         http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
#    Unless required by applicable law or agreed to in writing, software
 
12
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
13
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
14
#    License for the specific language governing permissions and limitations
 
15
#    under the License.
 
16
 
 
17
from django.conf.urls import patterns  # noqa
 
18
from django.conf.urls import url  # noqa
 
19
 
 
20
from openstack_dashboard.dashboards.project.volumes \
 
21
    .volumes import views
 
22
 
 
23
 
 
24
VIEWS_MOD = ('openstack_dashboard.dashboards.project.volumes.volumes.views')
 
25
 
 
26
urlpatterns = patterns(VIEWS_MOD,
 
27
    url(r'^create/$', views.CreateView.as_view(), name='create'),
 
28
    url(r'^(?P<volume_id>[^/]+)/extend/$',
 
29
        views.ExtendView.as_view(),
 
30
        name='extend'),
 
31
    url(r'^(?P<volume_id>[^/]+)/attach/$',
 
32
        views.EditAttachmentsView.as_view(),
 
33
        name='attach'),
 
34
    url(r'^(?P<volume_id>[^/]+)/create_snapshot/$',
 
35
        views.CreateSnapshotView.as_view(),
 
36
        name='create_snapshot'),
 
37
    url(r'^(?P<volume_id>[^/]+)/$',
 
38
        views.DetailView.as_view(),
 
39
        name='detail'),
 
40
    url(r'^(?P<volume_id>[^/]+)/update/$',
 
41
        views.UpdateView.as_view(),
 
42
        name='update'),
 
43
)