• {% trans %}Go to{% endtrans %}
  • {%- if config['ADMIN'] %}
  • {% trans %}Client setup{% endtrans %}

  • {%- endif %}
  • {% trans %}Website{% endtrans %}

  • {% trans %}Help{% endtrans %}

  • {#- Domain self-registration is only available when - Admin is available - Domain Self-registration is enabled - The current user is not logged on #} {%- if config['DOMAIN_REGISTRATION'] and not current_user.is_authenticated and config['ADMIN'] %}
  • {% trans %}Register a domain{% endtrans %}

  • {%- endif %} {#- User self-registration is only available when - Admin is available - Self-registration is enabled - The current user is not logged on #} {%- if not current_user.is_authenticated and signup_domains and config['ADMIN'] %}
  • {% trans %}Sign up{% endtrans %}

  • {%- endif %}