mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
27f62dff6c
- Manage users - Manage groups - Manage logs
6 lines
157 B
Python
6 lines
157 B
Python
from django.urls import path, re_path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
re_path(r'^vm_logs/(?P<vname>[\w\-\.]+)/$', views.vm_logs, name='vm_logs'),
|
|
]
|