mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-09 05:59:53 +00:00
17 lines
428 B
Python
17 lines
428 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)),
|
|
]
|