Separate out views

This commit is contained in:
2022-07-21 13:49:54 +01:00
parent c6713934ca
commit e62aa9d559
2 changed files with 5 additions and 170 deletions

View File

@@ -20,8 +20,9 @@ from django.urls import include, path
from django.views.generic import TemplateView
from core.ui.views.drilldown import Drilldown
from core.views import (Billing, Callback, Home, Order, Portal,
SentimentChartJSONView, Signup, VolumeChartJSONView)
from core.views import Billing, Home, Order, Portal, Signup
from core.views.callbacks import Callback
from core.views.charts import SentimentChartJSONView, VolumeChartJSONView
urlpatterns = [
path("", Home.as_view(), name="home"),