first steps towards an csv export view
This commit is contained in:
parent
e0d5ddee5d
commit
89bd3b0de6
|
@ -1,11 +1,12 @@
|
|||
from django.urls import path
|
||||
|
||||
from .views import ExternView, done, authorize, deny, InternView
|
||||
from .views import ExternView, done, authorize, deny, InternView, export
|
||||
|
||||
urlpatterns = [
|
||||
path('', ExternView.as_view(), name='extern'),
|
||||
path('intern', InternView.as_view(), name='intern'),
|
||||
path('saved', done, name='done'),
|
||||
path('export', export, name='export'),
|
||||
path('authorize/<str:choice>/<int:pk>', authorize, name='authorize'),
|
||||
path('deny/<str:choice>/<int:pk>', deny, name='deny')
|
||||
]
|
||||
|
|
|
@ -30,6 +30,11 @@ def auth_deny(choice,pk,auth):
|
|||
return HttpResponse(f'ERROR! UNKNWON CHOICE TYPE! {choice}')
|
||||
return False
|
||||
|
||||
@login_required
|
||||
def export(request):
|
||||
'''export the project database to a csv'''
|
||||
return HttpResponse('WE WANT CSV!')
|
||||
|
||||
@login_required
|
||||
def authorize(request, choice, pk):
|
||||
'''If IF grant a support they click a link in a mail which leads here.
|
||||
|
|
Loading…
Reference in New Issue