mirror of
https://github.com/retspen/webvirtcloud
synced 2025-03-14 10:32:57 +00:00
7 lines
191 B
Python
7 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'),
|
|
]
|