{% extends "base.html" %} {% load i18n %} {% load authnames %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {% trans "Registration" %}
  • {% endblock %} {% block content %} {% if registration_open %} {% show_message "info" _("By registering you agree to use your name and email in version control system commits and provide your contribution under license defined by each translated project.") %} {% if form.errors %} {% show_message "error" _("Please fix errors in the registration form.") %} {% endif %}
    {% if registration_email %}

    {% trans "Register using email" %}

    {% csrf_token %} {{ form|crispy }} {% if captcha_form %} {{ captcha_form|crispy }} {% endif %}
    {% endif %} {% if registration_backends %}

    {% trans "Third party registration" %}

    {% for name in registration_backends %} {% auth_name name %} {% endfor %}
    {% endif %} {% else %}

    {% url 'contact' as contact_url %} {% blocktrans %}Sorry, but registrations on this site are disabled. You can contact us for more details.{% endblocktrans %}

    {% endif %} {% endblock %}