Начал с усреднениями

This commit is contained in:
2025-11-28 00:18:04 +03:00
parent 908e11879d
commit d521b6baad
5 changed files with 1345 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ from .views import (
)
from .views.marks import ObjectMarksListView, AddObjectMarkView, UpdateObjectMarkView
from .views.tech_analyze import tech_analyze_entry, tech_analyze_save
from .views.points_averaging import PointsAveragingView, PointsAveragingAPIView, RecalculateGroupAPIView
app_name = 'mainapp'
@@ -129,5 +130,8 @@ urlpatterns = [
path('api/search-objitem/', SearchObjItemAPIView.as_view(), name='search_objitem_api'),
path('tech-analyze/', tech_analyze_entry, name='tech_analyze_entry'),
path('tech-analyze/save/', tech_analyze_save, name='tech_analyze_save'),
path('points-averaging/', PointsAveragingView.as_view(), name='points_averaging'),
path('api/points-averaging/', PointsAveragingAPIView.as_view(), name='points_averaging_api'),
path('api/points-averaging/recalculate/', RecalculateGroupAPIView.as_view(), name='points_averaging_recalculate'),
path('logout/', custom_logout, name='logout'),
]