25 lines
629 B
HTML
25 lines
629 B
HTML
{% extends "members_base.html" %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<div>
|
|
<div>
|
|
<h3>{% trans "Settings" %}</h3>
|
|
</div>
|
|
|
|
<div>
|
|
<form action="/i18n/setlang/" method="post" class="form-group"> {% csrf_token %}
|
|
|
|
<h4>{% trans "Language" %}</h4>
|
|
|
|
<select name="language" class="form-control">
|
|
<option value="fi">{% trans "Finnish" %}</option>
|
|
<option value="en">{% trans "English" %}</option>
|
|
</select>
|
|
<input type="submit" class="btn btn-success">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|