{% extends 'base.html' %} {% block title %}{{ t('setup') }}{% endblock %} {% block content %}

{{ t('setup') }}

{{ step }}/6
{% if step == 1 %}

1. {{ t('server_check') }}

{% for c in checks %}{% endfor %}
{{ c.name }}{% if c.ok %}OK{% else %}ERROR{% endif %}{{ c.detail }}{% if not c.ok and c.solution %}
{{ c.solution }}
{% endif %}
{{ t('next') }} {% elif step == 2 %}

2. {{ t('create_admin') }}

{% elif step == 3 %}

3. {{ t('create_database') }}

SQLite database initialized successfully.
{{ t('next') }} {% elif step == 4 %}

4. {{ t('instagram') }}

Password is used for this login request and is not stored permanently. If verification is required, enter the password again with the code.

Skip
{% elif step == 5 %}

5. {{ t('setup_scheduler') }}

{{ t('scheduler_note') }}

{{ scheduler.cron_expression() }}
{{ scheduler.cron_command() }}
{{ t('next') }} {% else %}

6. {{ t('final_test') }}

{% for c in diagnostics %}{% endfor %}
{{ c.name }}{% if c.ok %}OK{% else %}ERROR{% endif %}{{ c.detail }}
{% endif %}
{% endblock %}