From ea781266d11a0817fefb417d3da1769d97d2f9f0 Mon Sep 17 00:00:00 2001 From: "J. Cliff Dyer" Date: Thu, 17 Nov 2016 14:19:48 -0500 Subject: [PATCH] Simplify business hours on help modal --- lms/templates/help_modal.html | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/lms/templates/help_modal.html b/lms/templates/help_modal.html index 23fac8bf98..abe1779d99 100644 --- a/lms/templates/help_modal.html +++ b/lms/templates/help_modal.html @@ -121,24 +121,13 @@ from xmodule.tabs import CourseTabList
- <% - dst = datetime.now(pytz.utc).astimezone(pytz.timezone("America/New_York")).dst() - if dst: - open_time = "13:00" - close_time = "21:00" - else: - open_time = "14:00" - close_time = "22:00" - %>

${Text(_( 'Thank you for your inquiry or feedback. We typically respond to a request ' - 'within one business day (Monday to Friday, {open_time} UTC to {close_time} UTC.) In the meantime, please ' + 'within one business day, Monday to Friday. In the meantime, please ' 'review our {link_start}detailed FAQs{link_end} where most questions have ' 'already been answered.' )).format( - open_time=open_time, - close_time=close_time, link_start=HTML('').format(marketing_link('FAQ')), link_end=HTML('') )}