Răsfoiți Sursa

Updated indentation of example template in docs/topics/i18n/translation.txt.

Wim Feijen 9 ani în urmă
părinte
comite
514b69cb9e
1 a modificat fișierele cu 14 adăugiri și 14 ștergeri
  1. 14 14
      docs/topics/i18n/translation.txt

+ 14 - 14
docs/topics/i18n/translation.txt

@@ -1738,20 +1738,20 @@ Here's example HTML template code:
 .. code-block:: html+django
 
     {% load i18n %}
-    <form action="{% url 'set_language' %}" method="post">
-    {% csrf_token %}
-    <input name="next" type="hidden" value="{{ redirect_to }}" />
-    <select name="language">
-    {% get_current_language as LANGUAGE_CODE %}
-    {% get_available_languages as LANGUAGES %}
-    {% 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 }})
-    </option>
-    {% endfor %}
-    </select>
-    <input type="submit" value="Go" />
+
+    <form action="{% url 'set_language' %}" method="post">{% csrf_token %}
+        <input name="next" type="hidden" value="{{ redirect_to }}" />
+        <select name="language">
+            {% get_current_language as LANGUAGE_CODE %}
+            {% get_available_languages as LANGUAGES %}
+            {% 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 }})
+                </option>
+            {% endfor %}
+        </select>
+        <input type="submit" value="Go" />
     </form>
 
 In this example, Django looks up the URL of the page to which the user will be