{% extends "base.html" %} {% load i18n %} {% load translations %} {% load crispy_forms_tags %} {% block content %} {% if form.errors %} {% trans "Please fix errors in the registration form." as msg %} {% show_message "error" msg %} {% endif %}

{% trans "Register e-mail" %}

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

{% trans "By registering you agree to use your name and e-mail in the commits and provide your contribution under license defined by each translated project." %}

{% endblock %}