From d889a362aef4617db0f694dd5dee6eb528f66078 Mon Sep 17 00:00:00 2001 From: AlasdairSwan Date: Wed, 22 Oct 2014 10:54:33 -0400 Subject: [PATCH] ECOM-369 added meta to header to enable responsive. Set country dropdown to required for registration form --- lms/envs/common.py | 2 +- lms/templates/main.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index b44c383391..36e9986e64 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -1549,7 +1549,7 @@ REGISTRATION_EXTRA_FIELDS = { 'honor_code': 'required', 'terms_of_service': 'hidden', 'city': 'hidden', - 'country': 'hidden', + 'country': 'required', } ########################## CERTIFICATE NAME ######################## diff --git a/lms/templates/main.html b/lms/templates/main.html index 51649afed1..4099d3cc8f 100644 --- a/lms/templates/main.html +++ b/lms/templates/main.html @@ -10,6 +10,7 @@ %> + <%! from django.utils.translation import ugettext as _ %> <%! from microsite_configuration import microsite %>