Add download AC submissions

This commit is contained in:
cuom1999 2020-07-26 00:11:03 -05:00
parent e8ef46ffcf
commit 859c8f62ed
3 changed files with 27 additions and 1 deletions

View file

@ -119,6 +119,7 @@ urlpatterns = [
url(r'^/pdf$', problem.ProblemPdfView.as_view(), name='problem_pdf'),
url(r'^/pdf/(?P<language>[a-z-]+)$', problem.ProblemPdfView.as_view(), name='problem_pdf'),
url(r'^/clone', problem.ProblemClone.as_view(), name='problem_clone'),
url(r'^/downloadAC$', problem.download_submissions, name='download_submissions'),
url(r'^/submit$', problem.problem_submit, name='problem_submit'),
url(r'^/resubmit/(?P<submission>\d+)$', problem.problem_submit, name='problem_submit'),