diff --git a/mo/web/templates/org_contest.html b/mo/web/templates/org_contest.html
index 46315999d2421c81e6ce88c16de79982645e6574..ada65912f6a48801b89e8b4fd29d18141befc395 100644
--- a/mo/web/templates/org_contest.html
+++ b/mo/web/templates/org_contest.html
@@ -100,6 +100,7 @@
 			{% endif %}
 			{% if not site and can_edit_points %}
 				<a class="btn btn-xs btn-primary" href="{{ url_for('org_contest_task_points', contest_id=contest.contest_id, task_id=task.task_id) }}">Zadat body</a>
+				<a class="btn btn-xs btn-default" href="{{ url_for('org_contest_task_batch_points', contest_id=contest.contest_id, task_id=task.task_id) }}">Nahrát body</a>
 			{% endif %}
 		</div>
 	</tr>
diff --git a/mo/web/templates/org_round.html b/mo/web/templates/org_round.html
index 10e32a7b75ca9746b3be31f258cb997b832f48e8..3296d22beeeb1486e96d26f526c4c4666c6e619b 100644
--- a/mo/web/templates/org_round.html
+++ b/mo/web/templates/org_round.html
@@ -112,6 +112,9 @@
 				{% if can_upload %}
 					<a class="btn btn-xs btn-primary" href="{{ url_for('org_round_task_upload', round_id=round.round_id, task_id=task.task_id) }}">Nahrát</a>
 				{% endif %}
+				{% if can_upload %}
+					<a class="btn btn-xs btn-default" href="{{ url_for('org_round_task_batch_points', round_id=round.round_id, task_id=task.task_id) }}">Nahrát body</a>
+				{% endif %}
 				{% if g.user.is_admin %}
 					<a class="btn btn-xs btn-default" href="{{ log_url('task', task.task_id) }}">Historie</a>
 				{% endif %}