From ca727e366ca95ab52a94688cb18cdfe686018355 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson Date: Fri, 16 Oct 2020 16:55:13 -0400 Subject: [PATCH] Show the Spanish mega-menu on about page Currently the Spanish version of the "About this tool" page shows the English mega-menu; it should show the Spanish mega-menu. The about page just needed the same fix as we made in https://github.com/cfpb/retirement/pull/259 --- retirement_api/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/retirement_api/views.py b/retirement_api/views.py index 3ead822..c51283c 100644 --- a/retirement_api/views.py +++ b/retirement_api/views.py @@ -144,5 +144,6 @@ def about(request, language="en"): "base_template": base_template, "available_languages": ["en", "es"], "es": es, + "language": language, } return render(request, "retirement_api/about.html", cdict)