{% extends 'preferences/layout.html' %} {% load i18n %} {% block title %}{% trans "Move Account" %}{% endblock %} {% block header %} {% trans "Create Alias" %} {% endblock %} {% block panel %}

{% trans "Add another account as an alias" %}

{% trans "Marking another account as an alias is required if you want to move that account to this one." %}

{% trans "This is a reversable action and will not change the functionality of this account." %}

{% csrf_token %}
{% include 'snippets/form_errors.html' with errors_list=form.username.errors id="desc_username" %}
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_password" %}
{% if user.also_known_as.all.0 %}

{% trans "Aliases" %}

{% for alias in user.also_known_as.all %} {% endfor %}
{{ alias.username }}
{% csrf_token %}
{% endif %}
{% endblock %}