Implement graphs properly
This commit is contained in:
14
app/urls.py
14
app/urls.py
@@ -22,7 +22,7 @@ from django.views.generic import TemplateView
|
||||
from core.ui.views.drilldown import Drilldown
|
||||
from core.views import Billing, Cancel, Home, Order, Portal, Signup
|
||||
from core.views.callbacks import Callback
|
||||
from core.views.charts import SentimentChartJSONView, VolumeChartJSONView
|
||||
from core.views.dynamic.search import APISearch, Search
|
||||
|
||||
urlpatterns = [
|
||||
path("", Home.as_view(), name="home"),
|
||||
@@ -43,14 +43,6 @@ urlpatterns = [
|
||||
path("accounts/", include("django.contrib.auth.urls")),
|
||||
path("accounts/signup/", Signup.as_view(), name="signup"),
|
||||
path("ui/drilldown/", Drilldown.as_view(), name="drilldown"),
|
||||
path(
|
||||
"ui/drilldown/chart/volume/json/",
|
||||
VolumeChartJSONView.as_view(),
|
||||
name="chart_volume_json",
|
||||
),
|
||||
path(
|
||||
"ui/drilldown/chart/sentiment/json/",
|
||||
SentimentChartJSONView.as_view(),
|
||||
name="chart_sentiment_json",
|
||||
),
|
||||
path("parts/search/", Search.as_view(), name="search"),
|
||||
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