Skip to content
Snippets Groups Projects
Commit e6dca6a3 authored by Martin Mareš's avatar Martin Mareš
Browse files

Endpointy pro zobrazování odevzdaných řešení.

parent d55b49af
Branches
No related tags found
1 merge request!9WIP: Zárodek uživatelské části webu a submitování
......@@ -527,6 +527,15 @@ def org_submit_list(contest_id, user_id, task_id):
return render_template('not_implemented.html')
@app.route('/org/contest/c/<int:contest_id>/site/<int:site_id>/submit/<int:user_id>/<int:task_id>/')
def org_submit_site_list(contest_id, site_id, user_id, task_id):
sc = get_solution_context(contest_id, site_id, user_id, task_id)
# FIXME
return render_template('not_implemented.html')
@app.route('/org/contest/c/<int:id>/proctor-import', methods=('GET', 'POST'))
def org_proctor_import(id: int):
contest, rr = get_contest_rr(id, Right.manage_contest)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment