Merge branch 'remove-unnecessary-lambda-statement' into 'master'

[REMOVED] Unnecessary `lambda` statement

See merge request allianceauth/allianceauth!1465
This commit is contained in:
Ariel Rin
2022-10-09 08:17:46 +00:00
2 changed files with 10 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
{% get_language_info_list for LANGUAGES as languages %}
{% for language in languages %}
<option value="{{ language.code }}"{% if language.code == LANGUAGE_CODE %} selected="selected"{% endif %}>
{{ language.name_local }} ({{ language.code }})
{{ language.name_local|capfirst }} ({{ language.code }})
</option>
{% endfor %}
</select>