Начал с усреднениями
This commit is contained in:
@@ -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'),
|
||||
]
|
||||
Reference in New Issue
Block a user