Implement more UI elements
This commit is contained in:
10
app/urls.py
10
app/urls.py
@@ -19,6 +19,12 @@ from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from core.api.views.threshold import (
|
||||
ThresholdChans,
|
||||
ThresholdInfoModal,
|
||||
ThresholdOnline,
|
||||
ThresholdUsers,
|
||||
)
|
||||
from core.ui.views.drilldown import Drilldown
|
||||
from core.views import Billing, Cancel, Home, Order, Portal, Signup
|
||||
from core.views.callbacks import Callback
|
||||
@@ -44,5 +50,9 @@ urlpatterns = [
|
||||
path("accounts/signup/", Signup.as_view(), name="signup"),
|
||||
path("ui/drilldown/", Drilldown.as_view(), name="drilldown"),
|
||||
path("parts/search/", Search.as_view(), name="search"),
|
||||
path("modal/info/", ThresholdInfoModal.as_view(), name="modal_info"),
|
||||
path("api/chans/", ThresholdChans.as_view(), name="chans"),
|
||||
path("api/users/", ThresholdUsers.as_view(), name="users"),
|
||||
path("api/online/", ThresholdOnline.as_view(), name="online"),
|
||||
path("api/search/", APISearch.as_view(), name="api_search"),
|
||||
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
|
||||
Reference in New Issue
Block a user