]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/users/preferences.html
OSQA-447, fixing a minor typo: Allways -> Always
[osqa.git] / forum / skins / default / templates / users / preferences.html
1 {% extends "user.html" %}
2 {% load i18n %}
3 {% load extra_tags %}
4
5 {% block usercontent %}
6     <h2>{% trans "Preferences" %}</h2>
7     <div class='inline-block'>
8     <form method="POST">
9         {% csrf_token %}
10         <p class="message">
11             {% trans "Here you can set some personal preferences." %}
12         </p>
13         {{ form.errors }}
14         <table class="form-as-table">
15             <tr>
16                 <td colspan="2">
17                     <strong>{% trans "Navigation:" %}</strong>
18                 </td>
19             </tr>
20             <tr>
21                 <td>{{ form.sticky_sorts }}</td>
22                 <td>{% trans "Always remember the sort order I apply to the lists I view" %}</td>
23             </tr>
24         </table>
25         <div class="submit-row">
26             <input type="submit" class="submit" name="save" value="{% trans "Save" %}"/>
27         </div>
28     </form>
29     </div>
30 {% endblock %}