diff --git a/mo/web/templates/org_contest_advance.html b/mo/web/templates/org_contest_advance.html
index f7a86b84908938777a2f9327a3e063d4fc28c6b7..3bea35e52ec7000651dd1ad460b0cb18cec97a70 100644
--- a/mo/web/templates/org_contest_advance.html
+++ b/mo/web/templates/org_contest_advance.html
@@ -21,19 +21,21 @@
 
 <table class='data'>
 	<thead>
-		<tr><th>Oblast<th>Postoupilo<th>Nepostoupilo
+		<tr><th>Oblast<th>Postoupilo<th>Nepostoupilo<th>
 	<tbody>
 		{% for c in prev_contests %}
 		<tr>
-			<td>{{ c.place.name }}
+			<td><a href='{{ url_for('org_contest', id=c.contest_id) }}'>{{ c.place.name }}</a>
 			<td>{{ accept_by_place_id[c.place.place_id] }}
 			<td>{{ reject_by_place_id[c.place.place_id] }}
+			<td><a class='btn btn-warning btn-xs' href='{{ url_for('org_score', contest_id=c.contest_id) }}'>Výsledková listina</a>
 		{% endfor %}
 	<tfoot>
 		<tr>
 			<th>Celkem
 			<th>{{ accept_by_place_id.values()|sum }}
 			<th>{{ reject_by_place_id.values()|sum }}
+			<th>
 	</tfoot>
 </table>
 {% endif %}