From 5779bd1584f8053631cef7e1f0cdcb0194cbe32e Mon Sep 17 00:00:00 2001 From: Matthew Piatetsky Date: Thu, 23 Jan 2020 12:03:42 -0500 Subject: [PATCH] add more incomes --- lms/djangoapps/courseware/views/views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/views/views.py b/lms/djangoapps/courseware/views/views.py index e2c17c73a8..3653202787 100644 --- a/lms/djangoapps/courseware/views/views.py +++ b/lms/djangoapps/courseware/views/views.py @@ -1716,7 +1716,10 @@ def financial_assistance_form(request): """Render the financial assistance application form page.""" user = request.user enrolled_courses = get_financial_aid_courses(user) - incomes = ['Less than $5,000', '$5,000 - $10,000', '$10,000 - $15,000', '$15,000 - $20,000', '$20,000 - $25,000'] + incomes = ['Less than $5,000', '$5,000 - $10,000', '$10,000 - $15,000', '$15,000 - $20,000', '$20,000 - $25,000', + '$25,000 - $40,000', '$40,000 - $55,000', '$55,000 - $70,000', '$70,000 - $85,000', + '$85,000 - $100,000', 'More than $100,000'] + annual_incomes = [ {'name': _(income), 'value': income} for income in incomes ]