{% load i18n %}

{% translate "Note on Template: You can use Jinja2 Template syntax" %} (http://jinja.pocoo.org/docs/dev/)

{% translate "The following tags are available: "%}

  • {{style}}: {% translate "The Cascading Style sheet section"%}
  • {{form_begin}}: {% translate "The beginning <form action='...'>"%}
  • {{form_end}}: {% translate "The end </form>"%}
  • {{input_username}}: {% translate "The username Input"%}
  • {{captcha}}: {% translate "The captcha"%}
  • {{input_captcha}}: {% translate "The captcha Input"%}
  • {{ask_phone}}: {% translate "Boolean: True if the phone number must be filled in"%}
  • {{input_phone}}: {% translate "The phone number Input"%}
  • {{input_password_1}}: {% translate "The password Input (#1)"%}
  • {{input_password_2}}: {% translate "The password Input confirmation (#2)"%}
  • {{input_submit}}: {% translate "The 'submit' button"%}
  • {{step1}}: {% translate "Boolean: True if registration step 1"%}
  • {{step2}}: {% translate "Boolean: True if registration step 2"%}
  • {{error_message}}: {% translate "The message telling what happens"%}
{% include "./images.html" %}
{{form.html_registration}} {{form.html_registration.errors}}

{{ form.register_captcha_field }} {{ form.register_captcha_field.errors }}
{{ form.register_username_field }} {{ form.register_username_field.errors }}
{{ form.register_phone_field }} {{ form.register_phone_field.errors }}
{{ form.register_password1_field }} {{ form.register_password1_field.errors }}
{{ form.register_password2_field }} {{ form.register_password2_field.errors }}
{{ form.register_email_field }} {{ form.register_email_field.errors }}
{{ form.register_submit_field }} {{ form.register_submit_field.errors }}

{% translate "The following tags are available: "%}

  • {{registerLink}}: {% translate "The URI to confirm registration"%}
  • {{username}}: {% translate "The username of the created account"%}
  • {{app.name}}: {% translate "The Name of the app for which we request an account registration"%}
  • {{app.url}}: {% translate "The URL of the app for which we request an account registrationt"%}
{% include "./images.html" %}
{{form.email_register_body}} {{form.email_register_body.errors}}
{{form.email_register_subject}} {{form.email_register_subject.errors}}
{{form.email_register_from}} {{form.email_register_from.errors}}