diff --git a/lms/templates/dashboard.html b/lms/templates/dashboard.html
index caf28d920b..2c61770371 100644
--- a/lms/templates/dashboard.html
+++ b/lms/templates/dashboard.html
@@ -36,14 +36,20 @@
% for course in courses:
-
+ <%
+ if course.has_started():
+ course_target = reverse('info', args=[course.id])
+ else:
+ course_target = reverse('about_course', args=[course.id])
+ %>
+