Add new import for student instructors (from HyperPlanning export)

This commit is contained in:
Claude Paroz 2017-08-25 16:51:01 +02:00
parent b8f6f435cc
commit 23908d40d3
6 changed files with 92 additions and 30 deletions

View file

@ -10,6 +10,7 @@ urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^import_students/', views.StudentImportView.as_view(), name='import-students'),
url(r'^import_hp/', views.HPImportView.as_view(), name='import-hp'),
url(r'^import_hp_contacts/', views.HPContactsImportView.as_view(), name='import-hp-contacts'),
url(r'^attribution/$', views.AttributionView.as_view(), name='attribution'),
url(r'^stages/export/(?P<scope>all)?/?$', views.stages_export, name='stages_export'),