{% extends "main.html" %} {% block title %}{{ _("Spam check in progress") }}{% endblock %} {% block content %} {{ super() }}
{{_("Before you can log in, your account needs to be check for spam likelihood. It should only take a few seconds, please wait...")}}
{% elif user.status_note == "spamcheck_manual" %}{{ _("Your account needs to be approved by an administrator.") }} {{ _("You will receive an email when the decision has been taken.") }} {{ _("Thank you for your patience.") }} {% if spamcheck_contact is defined %} {{ spamcheck_contact() }} {% endif %}
{% elif user.status_note == "spamcheck_denied" %}{{ _("Your account has been flagged as spam.") }}
{% if spamcheck_contact is defined %} {{ spamcheck_contact() }} {% endif %} {% else %}{{ _("Unsupported spam status: %s, please contact the administrators", user.status_note) }}
{% endif %}