{% extends "board_base.html" %} {% load i18n %} {% load widget_tweaks %} {% block sub_title %}{% trans "Please set your display name" %}{% endblock sub_title %} {% block username_warning %}{% endblock username_warning %} {% block content %}

{% trans "Please set your display name" %}

{% csrf_token %}
{% with field=form.public_username %}
{{ field|add_class:'form-control' }}

{% trans "This display name will be associated with all your messages and cannot be changed once defined." %}

{% for error in field.errors %}

{{ error }}

{% endfor %}
{% endwith %}
{% endblock content %} {% block extra_css %} {{ form.media.css }} {% endblock extra_css %} {% block extra_js %} {{ form.media.js }} {% endblock extra_js %}