mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
9 lines
303 B
Python
9 lines
303 B
Python
from django.conf.urls import url
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.computes, name='computes'),
|
|
url(r'^overview/(?P<compute_id>[0-9]+)/$', views.overview, name='overview'),
|
|
url(r'^statistics/(?P<compute_id>[0-9]+)/$',
|
|
views.compute_graph, name='compute_graph'),
|
|
]
|