Fix the Jinja2 error for python 3.8.

This commit is contained in:
Yogesh Mahajan 2024-10-18 19:30:42 +05:30 committed by GitHub
parent 4d7fc8be52
commit 898c7b27df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,15 +5,12 @@
{% set _ = ns.langOptions.append({'value': key, 'label': lang}) %}
{% endfor %}
{% set oauth2_config = [] %}
{% set oauth2_config_to_be_included = ['OAUTH2_NAME', 'OAUTH2_DISPLAY_NAME', 'OAUTH2_ICON', 'OAUTH2_BUTTON_COLOR' ] %}
{% for oauth_client in config.OAUTH2_CONFIG %}
{% set _tmp = [] %}
{% for key, value in oauth_client.items() %}
{% if key in oauth2_config_to_be_included %}
{% set _ = _tmp.append((key, value)) %}
{% endif %}
{% endfor %}
{% set _ = oauth2_config.append(dict.from_keys(_tmp)) %}
{% for i in config.OAUTH2_CONFIG %}
{% set _tmp = oauth2_config.append({'OAUTH2_NAME': config.OAUTH2_CONFIG[loop.index-1].get('OAUTH2_NAME', ''),
'OAUTH2_BUTTON_COLOR': config.OAUTH2_CONFIG[loop.index-1].get('OAUTH2_BUTTON_COLOR', ''),
'OAUTH2_DISPLAY_NAME': config.OAUTH2_CONFIG[loop.index-1].get('OAUTH2_DISPLAY_NAME', ''),
'OAUTH2_ICON': config.OAUTH2_CONFIG[loop.index-1].get('OAUTH2_ICON', '')
}) %}
{% endfor %}
{% set page_props = {