{% extends theme("user/settings_layout.html") %} {% block settings_content %} {% from theme("macros.html") import horizontal_field, horizontal_select_field %}
{% trans %}Change User Details{% endtrans %}
{{ form.hidden_tag() }} {{ horizontal_select_field(form.birthday, select_class="form-control", surrounded_div="col-sm-4") }} {{ horizontal_field(form.gender) }} {{ horizontal_field(form.location) }} {{ horizontal_field(form.website) }} {{ horizontal_field(form.avatar) }} {{ horizontal_field(form.signature, div_class="col-sm-8 editor", rows="5", placeholder="", **{'data-provide': 'markdown', 'class': 'flaskbb-editor'}) }} {{ horizontal_field(form.notes, div_class="col-sm-8 editor", rows="12", placeholder="", **{'data-provide': 'markdown', 'class': 'flaskbb-editor'}) }} {{ horizontal_field(form.submit) }} {% include theme('editor_help.html') %}
{% endblock %}