{% macro bootstrap_success(name) %}
{%- trans profile_link=url_for('users.user_dashboard'), settings_link=url_for('core.admin_dashboard') -%}
Indico is now ready and you are logged as {{ name }} with administrative rights!
Don't forget to tweak Indico's settings and update your
profile.
{%- endtrans -%}
{% endmacro %}
{% macro community_success() %}
{%- trans link=url_for('cephalopod.index') -%}
Welcome to the Indico community, your server has been registered to the Community Hub!
You can manage it here.
{%- endtrans -%}
{% endmacro %}
{% macro community_timeout() %}
{%- trans link=url_for('cephalopod.index') -%}
Registration to the Community Hub timed-out. Please try again in a while here.
{%- endtrans -%}
{% endmacro %}
{% macro community_error(err) %}
{%- trans %}Failed to register to the Community Hub: {{ err }}.{% endtrans %}
{%- trans link=url_for('cephalopod.index') -%}
See the logs for details and try again here.
{%- endtrans -%}
{% endmacro %}
{% macro community_exception(err) %}
{%- trans -%}
An unexpected exception happened while registering the server to the Community Hub: {{ err }}.
{%- endtrans %}
{%- trans link=url_for('cephalopod.index') -%}
See the logs for details and try again here.
{%- endtrans -%}
{% endmacro %}