mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-26 08:05:22 +00:00
8 lines
191 B
Python
8 lines
191 B
Python
|
from django.conf.urls import url
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', views.showlogs, name='showlogs'),
|
||
|
url(r'^(?P<page>[0-9]+)/$', views.showlogs, name='showlogspage'),
|
||
|
]
|