diff --git a/src/registrar/context_processors.py b/src/registrar/context_processors.py index 5c2fb6a54..3ad010f89 100644 --- a/src/registrar/context_processors.py +++ b/src/registrar/context_processors.py @@ -96,6 +96,9 @@ def portfolio_permissions(request): "has_organization_feature_flag": False, } + def is_widescreen_mode(request): widescreen_paths = ["/domains/", "/requests/"] - return {"is_widescreen_mode": any(path in request.path for path in widescreen_paths)} #any(path in request.path for path in widescreen_paths) \ No newline at end of file + return { + "is_widescreen_mode": any(path in request.path for path in widescreen_paths) + } # any(path in request.path for path in widescreen_paths)