diff --git a/lms/templates/conditional_module.html b/lms/templates/conditional_module.html index e9a42b95ce..019ae67567 100644 --- a/lms/templates/conditional_module.html +++ b/lms/templates/conditional_module.html @@ -2,8 +2,14 @@ from django.core.urlresolvers import reverse reqm = module.required_modules[0] course_id = module.system.course_id + condition = module.condition %> -
${reqm.display_name} -must be completed before this will become visible.
+${reqm.display_name} +must be +% if 'attempted' in condition: + attempted +% else: + completed +% endif +before this will become visible.