diff --git a/mo/web/org_contest.py b/mo/web/org_contest.py index c02bd849a1704548e27dc77db9b4331e075ddff1..cb49af2b55ef522c545233a10dce75e715384a8d 100644 --- a/mo/web/org_contest.py +++ b/mo/web/org_contest.py @@ -325,9 +325,9 @@ def org_contest_import(id: int): ) -@app.route('/org/contest/import/help.html') -def org_contest_import_help(): - return render_template('org_contest_import_help.html') +@app.route('/doc/import_contest') +def doc_import_contest(): + return render_template('doc_import_contest.html') @app.route('/org/contest/import/sablona.csv') @@ -491,6 +491,6 @@ def org_proctor_import_template(): return resp -@app.route('/org/contest/import/help-dozor.html') +@app.route('/doc/import-dozor') def org_proctor_import_help(): - return render_template('org_proctor_import_help.html') + return render_template('doc_import_proctor') diff --git a/mo/web/templates/org_contest_import_help.html b/mo/web/templates/doc_import_contest.html similarity index 100% rename from mo/web/templates/org_contest_import_help.html rename to mo/web/templates/doc_import_contest.html diff --git a/mo/web/templates/org_proctor_import_help.html b/mo/web/templates/doc_import_proctor.html similarity index 100% rename from mo/web/templates/org_proctor_import_help.html rename to mo/web/templates/doc_import_proctor.html