~ubuntu-branches/ubuntu/trusty/horizon/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-12-05 14:39:15 UTC
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: package-import@ubuntu.com-20131205143915-5u8q3kdxdw8e7maz
Tags: upstream-2014.1~b1
ImportĀ upstreamĀ versionĀ 2014.1~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#    License for the specific language governing permissions and limitations
15
15
#    under the License.
16
16
 
17
 
from django.conf.urls.defaults import patterns  # noqa
18
 
from django.conf.urls.defaults import url  # noqa
 
17
from django.conf.urls import patterns  # noqa
 
18
from django.conf.urls import url  # noqa
19
19
 
 
20
from openstack_dashboard.dashboards.project.routers.extensions.routerrules\
 
21
    import views as rr_views
20
22
from openstack_dashboard.dashboards.project.routers.ports \
21
23
    import views as port_views
22
24
from openstack_dashboard.dashboards.project.routers import views
31
33
    url(r'^(?P<router_id>[^/]+)/addinterface',
32
34
        port_views.AddInterfaceView.as_view(),
33
35
        name='addinterface'),
 
36
    url(r'^(?P<router_id>[^/]+)/addrouterrule',
 
37
        rr_views.AddRouterRuleView.as_view(),
 
38
        name='addrouterrule'),
34
39
    url(r'^(?P<router_id>[^/]+)/setgateway',
35
40
        port_views.SetGatewayView.as_view(),
36
41
        name='setgateway'),