Rework report import view and add individual student report send form

This commit is contained in:
Claude Paroz 2018-02-05 16:25:32 +01:00
parent 7488cbcd31
commit b966e140b8
12 changed files with 167 additions and 74 deletions

View file

@ -34,7 +34,7 @@ USE_TZ = False
# Absolute filesystem path to the directory that will hold user-uploaded files.
MEDIA_ROOT = os.path.join(PROJECT_PATH, 'media')
MEDIA_URL = ''
MEDIA_URL = '/media/'
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files

View file

@ -12,7 +12,6 @@ urlpatterns = [
path('import_students/', views.StudentImportView.as_view(), name='import-students'),
path('import_hp/', views.HPImportView.as_view(), name='import-hp'),
path('import_hp_contacts/', views.HPContactsImportView.as_view(), name='import-hp-contacts'),
path('import_bulletins/', views.ImportBulletinView.as_view(), name='import-bulletins'),
path('attribution/', views.AttributionView.as_view(), name='attribution'),
re_path(r'^stages/export/(?P<scope>all)?/?$', views.stages_export, name='stages_export'),
@ -21,6 +20,7 @@ urlpatterns = [
path('institutions/<int:pk>/', views.CorporationView.as_view(), name='corporation'),
path('classes/', views.KlassListView.as_view(), name='classes'),
path('classes/<int:pk>/', views.KlassView.as_view(), name='class'),
path('classes/<int:pk>/import_reports/', views.ImportReportsView.as_view(), name='import-reports'),
path('candidate/<int:pk>/send_convocation/', candidats_views.ConvocationView.as_view(),
name='candidate-convocation'),
@ -46,6 +46,8 @@ urlpatterns = [
path('training/by_period/<int:pk>/', views.TrainingsByPeriodView.as_view()),
path('student/<int:pk>/summary/', views.StudentSummaryView.as_view()),
path('student/<int:pk>/send_reports/sem/<int:semestre>/', views.SendStudentReportsView.as_view(),
name='send-student-reports'),
path('availability/<int:pk>/summary/', views.AvailabilitySummaryView.as_view()),
path('corporation/<int:pk>/contacts/', views.CorpContactJSONView.as_view()),
]