diff --git a/mo/web/doc.py b/mo/web/doc.py
index c909a6e806b050acbd7ebbaf31c8161c0b203673..4c8178eee1894a3419f204c8921ca1c19f24a1a8 100644
--- a/mo/web/doc.py
+++ b/mo/web/doc.py
@@ -21,3 +21,8 @@ def doc_gdpr():
 @app.route('/doc/about')
 def doc_about():
     return render_template('doc_about.html')
+
+
+@app.route('/doc/import')
+def doc_import():
+    return render_template('doc_import.html')
diff --git a/mo/web/org_contest.py b/mo/web/org_contest.py
index b2ecd53c8aa9b1891f0adc09807455feb461b285..a68bd79a44bb5417931c6efb4075cec51cc8f003 100644
--- a/mo/web/org_contest.py
+++ b/mo/web/org_contest.py
@@ -413,11 +413,6 @@ def org_contest(ct_id: int, site_id: Optional[int] = None):
     )
 
 
-@app.route('/doc/import')
-def doc_import():
-    return render_template('doc_import.html')
-
-
 class ImportForm(FlaskForm):
     file = flask_wtf.file.FileField("Soubor", render_kw={'autofocus': True})
     typ = wtforms.SelectField(
diff --git a/mo/web/templates/doc_index.html b/mo/web/templates/doc_index.html
index 70463f5e6ec3f6865a24db3f7b72a7dde9a12e8c..0e1b6beae4141c13655172682f7a5cb20b5f9917 100644
--- a/mo/web/templates/doc_index.html
+++ b/mo/web/templates/doc_index.html
@@ -12,6 +12,7 @@
 
 <ul>
 <li><a href='{{ url_for('doc_garant') }}'>Návod pro garanty</a>
+<li><a href='{{ url_for('doc_import') }}'>Importování</a>
 <li><a href='{{ url_for('static', filename='doc/import-navod.pdf') }}'>Podrobnější návod k importům</a> (PDF)
 </ul>