{% extends 'base.html' %} {% from 'forms/_form.html' import form_header, form_row, form_rows, form_fieldset, form_footer %} {% block title %}{% trans %}Hello there!{% endtrans %}{% endblock %} {% block head %} {{ webpack['module_bootstrap.js'] }} {% endblock %} {% block body %}
{% trans %}Hello there!{% endtrans %}
{% trans %}Indico needs just a little bit more data from you...{% endtrans %}
{% if languages and session.lang in languages %}
{% endif %}
{% include 'flashed_messages.html' %} {{ form_header(form, method='post', id='bootstrap-form', orientation='', classes='bootstrap-form') }}

{% trans %}Administrator Account{% endtrans %}

{% trans %}Insert here all basic information needed to create your account.{% endtrans %}
{%- trans -%} You can change any extra parameters (like your address or phone number) afterwards by accessing "Account Details" (from "My Profile"). {%- endtrans -%}
{{ form_rows(form, fields=('first_name', 'last_name', 'email', 'username', 'password', 'confirm_password'), placeholder=true) }}

{% trans %}Site configuration{% endtrans %}

{% trans %}These are the default parameters for your Indico site.{% endtrans %}
{%- trans -%} Please note that this information will also be used for your own user profile. You can change it later. {%- endtrans -%}
{%- trans -%} The time zone for the server has been set to {{ timezone }} and can be modified in indico.conf. {%- endtrans -%}
{{ form_rows(form, fields=('affiliation',), placeholder=true) }}

{% trans %}Let us know you exist!{% endtrans %}

{%- trans -%} Be part of the ever growing Indico community! Choose to receive news on the latest releases (2–3 times per year) as well as important security advisories. {%- endtrans -%}
{% trans %}The following data will be sent to the Community Hub:{% endtrans %}
  • {% trans %}Server URL{% endtrans %}
  • {% trans %}Indico version installed{% endtrans %} ({{ indico_version }})
  • {% trans %}Python version used{% endtrans %} ({{ python_version }})
  • {% trans %}Postgres version used{% endtrans %} ({{ postgres_version }})
  • {% trans %}Operating system used{% endtrans %} ({{ operating_system }})
  • {% trans %}Debug mode{% endtrans %} ({{ _('enabled') if config.DEBUG else _('disabled') }})
  • {%- trans -%} Basic statistics (number of events, contributions and users) {%- endtrans -%}
  • {% trans %}Server default language{% endtrans %}
  • {% trans %}Contact person{% endtrans %}
  • {% trans %}Affiliation of your Indico server{% endtrans %}
{%- trans -%} Please note that no private information will ever be sent to the Community Hub or the Indico Project and that you can disable it any time (from the "Community Hub" section of the administrative area). {%- endtrans -%}
{{ form_rows(form, fields=('enable_tracking', 'contact_name', 'contact_email'), placeholder=true) }} {% if show_local_warning %} {% include 'cephalopod/not_prod_warning.html' %} {% endif %}
{% call form_footer(form, i_form=true) %} {% endcall %}
{% endblock %}