diff --git a/mo/web/templates/doc_index.html b/mo/web/templates/doc_index.html
index d7be0a262a0602991668cad55a98ca4a2e2b6887..bf0998e1c2dc6eb4e25a53b854b9621541f9498f 100644
--- a/mo/web/templates/doc_index.html
+++ b/mo/web/templates/doc_index.html
@@ -52,12 +52,12 @@
 	),
 ]) %}
 
-{% set videos = filter_doc([
+{% set task_guides = filter_doc([
 	Doc(
 		min_role=RoleType.garant_skola,
 		cat='A',
 		url='https://youtube.com/playlist?list=PLoVd8MCZVtyMEjIeYms1P9qaqY0uLzDqZ&feature=shared',
-		link_text='Úlohy kategorie A: domácí kolo 73. ročníku',
+		link_text='Úlohy kategorie A–C: domácí kolo 73. ročníku',
 	),
 ]) %}
 
@@ -72,11 +72,11 @@
 {% endfor %}
 </ul>
 
-{% if videos %}
-<h3>Videa</h3>
+{% if task_guides %}
+<h3>Návody k úlohám</h3>
 
 <ul>
-{% for d in videos %}
+{% for d in task_guides %}
 <li><a href='{{ d.url }}'>{{ d.link_text }}</a>{{ d.suffix|none_value("") }}
 {% endfor %}
 </ul>