mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
9 lines
260 B
Python
9 lines
260 B
Python
from django.conf.urls import url
|
|
from . import views
|
|
|
|
urlpatterns =[
|
|
url(r'^$', views.computes, name='computes'),
|
|
url(r'^overview/(\d+)/$', views.overview, name='overview'),
|
|
url(r'^statistics/(\d+)/$', views.compute_graph, name='compute_graph'),
|
|
]
|