From e9d006e3242004b63659da65d1791ac144ab6866 Mon Sep 17 00:00:00 2001 From: Matthew Mongeau Date: Fri, 29 Jun 2012 11:57:48 -0400 Subject: [PATCH] Signing in brings you to your dashboard instead of the courses page with a find courses button when not enrolled. --- lms/templates/dashboard.html | 6 +++++- lms/templates/login_modal.html | 3 ++- lms/templates/navigation.html | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/lms/templates/dashboard.html b/lms/templates/dashboard.html index 60bb9062b4..1b6990c32f 100644 --- a/lms/templates/dashboard.html +++ b/lms/templates/dashboard.html @@ -85,7 +85,11 @@ % endfor % else: -

You are not enrolled in any courses. Find some here.

+
+
+ Find Courses +
+
% endif
diff --git a/lms/templates/login_modal.html b/lms/templates/login_modal.html index 5730e45f85..90b5688b73 100644 --- a/lms/templates/login_modal.html +++ b/lms/templates/login_modal.html @@ -1,3 +1,4 @@ +<%! from django.core.urlresolvers import reverse %> <%namespace name='static' file='static_content.html'/>