Add compensation form PDF for EDS section

This commit is contained in:
Claude Paroz 2019-10-04 15:36:55 +02:00
parent bfb5609c9a
commit e0cd5db7fb
7 changed files with 212 additions and 88 deletions

View file

@ -140,8 +140,9 @@ MAX_ENS_FORMATION = 250
GLOBAL_CHARGE_TOTAL = 2150
GLOBAL_CHARGE_PERCENT = 21.5
RESP_FILIERE_EDE = "Ann Schaub-Murray"
RESP_FILIERE_EDE = ("Ann Schaub-Murray", 'F')
DATE_LIEU_EXAMEN_EDE = "mercredi 7 mars 2018, à 13h30, salle A405"
RESP_FILIERE_EDS = ("Brahim Ali Hemma", 'M')
if 'TRAVIS' in os.environ:
SECRET_KEY = 'secretkeyfortravistests'

View file

@ -45,9 +45,9 @@ urlpatterns = [
# Qualification EDE
path('student_ede/<int:pk>/send_convocation/', views.StudentConvocationExaminationView.as_view(),
name='student-ede-convocation'),
path('student_ede/<int:pk>/examination/expert/', views.print_expert_ede_compensation_form,
path('student_ede/<int:pk>/examination/expert/', views.PrintExpertEDECompensationForm.as_view(),
name='print-expert-compens-ede'),
path('student_ede/<int:pk>/examination/mentor/', views.print_mentor_ede_compensation_form,
path('student_ede/<int:pk>/examination/mentor/', views.PrintMentorEDECompensationForm.as_view(),
name='print-mentor-compens-ede'),
path('student_ede/export_qualif_ede/', views.export.export_qualification_ede,
name='export-qualif-ede'),
@ -55,6 +55,8 @@ urlpatterns = [
# Qualification EDS
path('student_eds/<int:pk>/send_convocation/', views.StudentConvocationEDSView.as_view(),
name='student-eds-convocation'),
path('student_eds/<int:pk>/examination/expert/', views.PrintExpertEDSCompensationForm.as_view(),
name='print-expert-compens-eds'),
path('imputations/export/', views.export.imputations_export, name='imputations_export'),
path('export_sap/', views.export.export_sap, name='export_sap'),