mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-02-04 04:20:21 +01:00
fix typo in template condition
This commit is contained in:
parent
b1b1f93e1e
commit
47bec43108
@ -9,7 +9,7 @@
|
||||
<select name="language">
|
||||
{% get_language_info_list for LANGUAGES as languages %}
|
||||
{% for language in languages %}
|
||||
<option value="{{ language.code }}"{% if LANGUAGE_CODE = language.code %} selected{% endif %}>{{ language.name_local }} ({{ language.code }})</option>
|
||||
<option value="{{ language.code }}"{% if LANGUAGE_CODE == language.code %} selected{% endif %}>{{ language.name_local }} ({{ language.code }})</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input class="btn btn-primary" type="submit" value="Go" />
|
||||
|
Loading…
Reference in New Issue
Block a user