1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-22 05:18:23 +02:00

Display scholarship attestation

This commit is contained in:
Yohann D'ANELLO
2021-01-18 23:39:02 +01:00
parent 40fd5a56c1
commit 96adb01edb
4 changed files with 56 additions and 16 deletions

View File

@ -22,7 +22,7 @@ from django.urls import include, path
from django.views.defaults import bad_request, page_not_found, permission_denied, server_error
from django.views.generic import TemplateView
from registration.views import HealthSheetView, ParentalAuthorizationView, PhotoAuthorizationView, \
SolutionView, SynthesisView
ScholarshipView, SolutionView, SynthesisView
from .views import AdminSearchView
@ -45,6 +45,8 @@ urlpatterns = [
name='health_sheet'),
path('media/authorization/parental/<str:filename>/', ParentalAuthorizationView.as_view(),
name='parental_authorization'),
path('media/authorization/scholarship/<str:filename>/', ScholarshipView.as_view(),
name='scholarship'),
path('media/solutions/<str:filename>/', SolutionView.as_view(),
name='solution'),