{% extends "main.html" %} {% block title %}{{_("Registering Users")}}{% endblock %} {% block content %} {{ super() }}

{{_("Registering Users")}}

{% if stage_users %}
{% for user in stage_users %}

{{ user.username }}

{{_("Name:")}}
{{ user.name }}
{{_("Email:")}}
{{ user.mail }}
{{_("Registered:")}}
{{ user.creation_time }}
{{_("Status:")}}
{% if user.status_note == "spamcheck_awaiting" %} {{_("Waiting for spam check")}} {% elif user.status_note == "active" %} {{_("Not flagged as spam")}} {% elif user.status_note == "spamcheck_denied" %} {{_("Flagged as spam")}} {% elif user.status_note == "spamcheck_manual" %} {{_("Spam status unknown")}} {% else %} {{ user.status_note }} {% endif %}
{{ form.csrf_token }} {{ form.username(value=user.username) }}
{% if form.errors %}
{% for fieldname, errors in form.errors.items() %} {% for error in errors %}
{% if fieldname != "non_field_errors" %} {{fieldname}}: {% endif %} {{ error|e }}
{% endfor %} {% endfor %}
{% endif %}

{{ _("Clicking on Accept will send the validation email to this user. Other buttons will not send anything.") }}

{% endfor %}
{% else %}
{% if filter %}
{{_("No registering users in this state at the moment.")}}
{% else %}
{{_("No registering users at the moment.")}}
{% endif %}
{% endif %}
{% endblock %}