From 10dde3f0021cd49853aaf6a7515165b966e80142 Mon Sep 17 00:00:00 2001 From: imperosol Date: Sat, 7 Dec 2024 00:18:17 +0100 Subject: [PATCH] fix imports --- counter/urls.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/counter/urls.py b/counter/urls.py index ee478743..d5247478 100644 --- a/counter/urls.py +++ b/counter/urls.py @@ -33,6 +33,7 @@ from counter.views.admin import ( RefillingDeleteView, SellingDeleteView, ) +from counter.views.auth import counter_login, counter_logout from counter.views.cash import ( CashSummaryEditView, CashSummaryListView, @@ -45,16 +46,13 @@ from counter.views.eticket import ( EticketListView, EticketPDFView, ) -from counter.views.invoice import InvoiceCallView -from counter.views.main import ( +from counter.views.home import ( CounterActivityView, CounterLastOperationsView, CounterMain, - StudentCardDeleteView, - StudentCardFormView, - counter_login, - counter_logout, ) +from counter.views.invoice import InvoiceCallView +from counter.views.student_card import StudentCardDeleteView, StudentCardFormView urlpatterns = [ path("/", CounterMain.as_view(), name="details"),