1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Adde urls for app

This commit is contained in:
Retspen 2015-04-02 09:37:46 +03:00
parent e87f202b1f
commit 8b39d4e429
8 changed files with 38 additions and 23 deletions

8
computes/urls.py Normal file
View file

@ -0,0 +1,8 @@
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'),
]