From 0d689b31641b97dee01347d0fef2359a3f1b174b Mon Sep 17 00:00:00 2001 From: kimth Date: Wed, 22 Aug 2012 17:50:21 -0400 Subject: [PATCH] Quick workaround on syllabus_present that broke staging --- lms/templates/courseware/course_navigation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/templates/courseware/course_navigation.html b/lms/templates/courseware/course_navigation.html index af2100f042..5df09207b1 100644 --- a/lms/templates/courseware/course_navigation.html +++ b/lms/templates/courseware/course_navigation.html @@ -19,7 +19,7 @@ def url_class(url):
  1. Courseware
  2. Course Info
  3. -% if course.syllabus_present: +% if hasattr(course,'syllabus_present') and course.syllabus_present:
  4. Syllabus
  5. % endif % if user.is_authenticated():