diff --git a/common/djangoapps/course_modes/helpers.py b/common/djangoapps/course_modes/helpers.py index ae0c3cf0a7..9d3c8dfb6a 100644 --- a/common/djangoapps/course_modes/helpers.py +++ b/common/djangoapps/course_modes/helpers.py @@ -61,7 +61,7 @@ def enrollment_mode_display(mode, verification_status, course_id): 'enrollment_value': str(enrollment_value), 'show_image': show_image, 'image_alt': str(image_alt), - 'display_mode': _enrollment_mode_display(mode, verification_status, course_id) + 'display_mode': display_mode, } diff --git a/common/djangoapps/student/views/dashboard.py b/common/djangoapps/student/views/dashboard.py index cd3372c9a5..176e7965e2 100644 --- a/common/djangoapps/student/views/dashboard.py +++ b/common/djangoapps/student/views/dashboard.py @@ -5,7 +5,6 @@ Dashboard view and supporting methods import datetime import logging -from collections import defaultdict from django.conf import settings from django.contrib import messages @@ -109,7 +108,7 @@ def _get_recently_enrolled_courses(course_enrollments): ] -def _create_recent_enrollment_message(course_enrollments, course_modes): # lint-amnesty, pylint: disable=unused-argument +def _create_recent_enrollment_message(course_enrollments): """ Builds a recent course enrollment message. @@ -118,7 +117,6 @@ def _create_recent_enrollment_message(course_enrollments, course_modes): # lint Args: course_enrollments (list[CourseEnrollment]): a list of course enrollments. - course_modes (dict): Mapping of course ID's to course mode dictionaries. Returns: A string representing the HTML message output from the message template. @@ -292,29 +290,6 @@ def get_verification_error_reasons_for_display(verification_error_codes): return verification_errors -def reverification_info(statuses): - """ - Returns reverification-related information for *all* of user's enrollments whose - reverification status is in statuses. - - Args: - statuses (list): a list of reverification statuses we want information for - example: ["must_reverify", "denied"] - - Returns: - dictionary of lists: dictionary with one key per status, e.g. - dict["must_reverify"] = [] - dict["must_reverify"] = [some information] - """ - reverifications = defaultdict(list) - - # Sort the data by the reverification_end_date - for status in statuses: - if reverifications[status]: - reverifications[status].sort(key=lambda x: x.date) - return reverifications - - def _credit_statuses(user, course_enrollments): """ Retrieve the status for credit courses. @@ -552,9 +527,7 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem # Check to see if the student has recently enrolled in a course. # If so, display a notification message confirming the enrollment. - enrollment_message = _create_recent_enrollment_message( - course_enrollments, course_modes_by_course - ) + enrollment_message = _create_recent_enrollment_message(course_enrollments) course_optouts = Optout.objects.filter(user=user).values_list('course_id', flat=True) # Display activation message @@ -579,10 +552,10 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem recovery_email_message = recovery_email_activation_message = None if is_secondary_email_feature_enabled(): try: - pending_email = PendingSecondaryEmailChange.objects.get(user=user) # lint-amnesty, pylint: disable=unused-variable + PendingSecondaryEmailChange.objects.get(user=user) except PendingSecondaryEmailChange.DoesNotExist: try: - account_recovery_obj = AccountRecovery.objects.get(user=user) # lint-amnesty, pylint: disable=unused-variable + AccountRecovery.objects.get(user=user) except AccountRecovery.DoesNotExist: recovery_email_message = Text( _( @@ -631,7 +604,7 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem ecommerce_service = EcommerceService() inverted_programs = meter.invert_programs() - urls, programs_data = {}, {} + programs_data = {} bundles_on_dashboard_flag = LegacyWaffleFlag(experiments_namespace, 'bundles_on_dashboard', __name__) # lint-amnesty, pylint: disable=toggle-missing-annotation # TODO: Delete this code and the relevant HTML code after testing LEARNER-3072 is complete @@ -692,10 +665,6 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem verification_status = IDVerificationService.user_status(user) verification_errors = get_verification_error_reasons_for_display(verification_status['error']) - # Gets data for midcourse reverifications, if any are necessary or have failed - statuses = ["approved", "denied", "pending", "must_reverify"] - reverifications = reverification_info(statuses) - enrolled_courses_either_paid = frozenset( enrollment.course_id for enrollment in course_enrollments if enrollment.is_paid_course() @@ -707,10 +676,6 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem if enrollment.is_order_voucher_refundable() ) - # If there are *any* denied reverifications that have not been toggled off, - # we'll display the banner - denied_banner = any(item.display for item in reverifications["denied"]) - # get list of courses having pre-requisites yet to be completed courses_having_prerequisites = frozenset( enrollment.course_id for enrollment in course_enrollments @@ -741,11 +706,9 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem course_enrollments = [ enr for enr in course_enrollments if entitlement.enrollment_course_run.course_id != enr.course_id ] - show_account_activation_popup = request.COOKIES.get(settings.SHOW_ACTIVATE_CTA_POPUP_COOKIE_NAME, None) context = { - 'urls': urls, 'programs_data': programs_data, 'enterprise_message': enterprise_message, 'consent_required_courses': consent_required_courses, @@ -765,13 +728,11 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem 'cert_statuses': cert_statuses, 'credit_statuses': _credit_statuses(user, course_enrollments), 'show_email_settings_for': show_email_settings_for, - 'reverifications': reverifications, 'verification_display': verification_status['should_display'], 'verification_status': verification_status['status'], 'verification_expiry': verification_status['verification_expiry'], 'verification_status_by_course': verify_status_by_course, 'verification_errors': verification_errors, - 'denied_banner': denied_banner, 'billing_email': settings.PAYMENT_SUPPORT_EMAIL, 'show_account_activation_popup': show_account_activation_popup, 'user': user, @@ -779,7 +740,6 @@ def student_dashboard(request): # lint-amnesty, pylint: disable=too-many-statem 'platform_name': platform_name, 'enrolled_courses_either_paid': enrolled_courses_either_paid, 'enrolled_courses_voucher_refundable': enrolled_courses_voucher_refundable, - 'provider_states': [], 'courses_requirements_not_met': courses_requirements_not_met, 'nav_hidden': True, 'inverted_programs': inverted_programs, diff --git a/lms/templates/dashboard.html b/lms/templates/dashboard.html index 0543f827a0..b8e2ff99b3 100644 --- a/lms/templates/dashboard.html +++ b/lms/templates/dashboard.html @@ -21,11 +21,6 @@ from openedx.core.djangolib.markup import HTML, Text from common.djangoapps.student.models import CourseEnrollment %> -<% - cert_name_short = settings.CERT_NAME_SHORT - cert_name_long = settings.CERT_NAME_LONG -%> - <%block name="pagetitle">${_("Dashboard")}%block> <%block name="bodyclass">view-dashboard is-authenticated%block> @@ -113,12 +108,6 @@ from common.djangoapps.student.models import CourseEnrollment