mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-07 21:19:53 +00:00
19 lines
430 B
Python
19 lines
430 B
Python
from django.urls import path, include
|
|
|
|
from . import api
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
*[
|
|
path(p, views.IndexView.as_view())
|
|
for p in ['', 'login', 'app', 'about', 'about/features']
|
|
],
|
|
|
|
path('app-dist/<version>/<path:path>', views.AppDistView.as_view()),
|
|
path('terminal', views.TerminalView.as_view()),
|
|
path('demo', views.DemoView.as_view()),
|
|
|
|
path('', include(api.urlpatterns)),
|
|
]
|