mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
13 lines
517 B
Python
13 lines
517 B
Python
from django.conf.urls import url
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<compute_id>[0-9]+)/(?P<vname>[\w\-\.]+)/$',
|
|
views.instance, name='instance'),
|
|
url(r'^statistics/(?P<compute_id>[0-9]+)/(?P<vname>[\w\-\.]+)/$',
|
|
views.inst_graph, name='inst_graph'),
|
|
url(r'^status/(?P<compute_id>[0-9]+)/(?P<vname>[\w\-\.]+)/$',
|
|
views.inst_status, name='inst_status'),
|
|
url(r'^guess_mac_address/(?P<vname>[\w\-\.]+)/$',
|
|
views.guess_mac_address, name='guess_mac_address'),
|
|
]
|