1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/computes/urls.py

9 lines
260 B
Python
Raw Normal View History

2015-04-02 06:37:46 +00:00
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'),
]