diff --git a/common/djangoapps/course_modes/views.py b/common/djangoapps/course_modes/views.py
index 9195eb1679..b2cc6dc2ba 100644
--- a/common/djangoapps/course_modes/views.py
+++ b/common/djangoapps/course_modes/views.py
@@ -260,14 +260,16 @@ class ChooseModeView(View):
# REV-2133 TODO Value Prop: remove waffle flag after testing is completed
# and happy path version is ready to be rolled out to all users.
- if VALUE_PROP_TRACK_SELECTION_FLAG.is_enabled():
- # First iteration of happy path does not handle errors. If there are enrollment errors for a learner that is
- # technically considered happy path, old Track Selection page will be displayed.
- if not error:
- # Happy path conditions.
- if verified_mode and fbe_is_on and not enterprise_customer:
- return render_to_response("course_modes/track_selection.html", context)
- return render_to_response("course_modes/choose.html", context)
+ #if VALUE_PROP_TRACK_SELECTION_FLAG.is_enabled():
+ # First iteration of happy path does not handle errors. If there are enrollment errors for a learner that is
+ # technically considered happy path, old Track Selection page will be displayed.
+ LOG.info('verified mode: [%s], fbe_is_on: [%s], enterprise_customer: [%s]', verified_mode, fbe_is_on, enterprise_customer)
+ LOG.info('deadline: [%s], gated_content: [%s], duration: [%s], get_user_course_expiration_date: [%s]', deadline, gated_content, duration, get_user_course_expiration_date(request.user, course))
+ if not error:
+ # Happy path conditions.
+ if verified_mode and fbe_is_on and not enterprise_customer:
+ return render_to_response("course_modes/track_selection_types/full_fbe.html", context)
+ #return render_to_response("course_modes/choose.html", context)
@method_decorator(transaction.non_atomic_requests)
@method_decorator(login_required)
diff --git a/lms/templates/course_modes/track_selection.html b/lms/templates/course_modes/track_selection.html
index f710fc167e..5e88555338 100644
--- a/lms/templates/course_modes/track_selection.html
+++ b/lms/templates/course_modes/track_selection.html
@@ -95,43 +95,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string
${Text(_("Get {start_bold}access to all course activities{end_bold}, including both graded and non-graded assignments, while the course is running")).format(
- start_bold=HTML(''),
- end_bold=HTML(''),
- )}
-
-
- ${Text(_("{start_bold}Full access{end_bold} to course content and materials, even after the course ends")).format(
- start_bold=HTML(''),
- end_bold=HTML(''),
- )}
-
-
-
- ${Text(_("{link_start}Learn more{link_end} about course access")).format(
- link_start=HTML('').format(track_comparison_url=track_links['learn_more']),
- link_end=HTML('')
- )}
-
-
-
-
${Text(_("Support our {start_bold}mission{end_bold} to increase access to high-quality education for everyone, everywhere")).format(
- start_bold=HTML(''),
- end_bold=HTML(''),
- )}
@@ -167,23 +131,7 @@ from openedx.core.djangolib.js_utils import js_escaped_string
${_("Free")}
${_("Access this course")}
-
-
-
${Text(_("Get temporary access to {start_bold}non-graded{end_bold} activities, including discussion forums and non-graded assignments")).format(
- start_bold=HTML(''),
- end_bold=HTML(''),
- )}
-
${Text(_("Get {start_bold}temporary access{end_bold} to the course material, including videos and readings")).format(
- start_bold=HTML(''),
- end_bold=HTML(''),
- )}
- % if audit_access_deadline:
-
${_("Access expires and all progress will be lost on")} ${audit_access_deadline}
- % else:
-
${_("Access expires and all progress will be lost")}