This commit is contained in:
2025-05-08 14:42:39 +03:00
parent 3a6927c180
commit 84c339d556
9 changed files with 434 additions and 68 deletions

10
urls.py
View File

@@ -1,8 +1,10 @@
# urls.py
# axc_ul/urls.py
from django.urls import path
from .views import PixelDetailView, UpperLimitView
from .views import PixelAggregateView, UpperLimitView #, PixelDetailView
urlpatterns = [
path('pixel/<int:hpid>/', PixelDetailView.as_view(), name='pixel-detail'),
path('upper-limit/', UpperLimitView.as_view(), name='upper-limit')
#path('pixel/<int:hpid>/', PixelDetailView.as_view(), name='pixel-detail'),
path('pixel-aggregate/', PixelAggregateView.as_view(), name='pixel-aggregate'),
path('upper-limit/', UpperLimitView.as_view(), name='upper-limit'),
]