Skip to content

Commit

Permalink
Fix the Jinja2 error for python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshmahajan-1903 committed Oct 18, 2024
1 parent 5d008f0 commit 441894c
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions web/pgadmin/templates/security/login_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 441894c

Please sign in to comment.