Status{% if current_user %} - {{ current_user }}{% endif %}
{% if error %}
  • {{ error }}
{% endif %}
  • No input is needed
Photos Download{% if current_user %} - {{ current_user }}{% endif %}
    {% if progress._photos_count != 0 %}
  • {{ progress.photos_percent }} %
    {{ progress._photos_counter }} / {{ progress._photos_count }}
  • {% endif %} {% if progress.photos_last_message != None and progress._photos_count == 0 %}
  • Last Message
    {{ progress.photos_last_message }}
  • {% endif %} {% if progress._waiting != 0 %}
  • Waiting for next iteration
    {{ progress.waiting_readable }}
  • {% endif %}
{% if global_config %}
Global Configuration
    {% for record in global_config %}
  • {{ record }}
    {% set value = global_config[record] %} {% if value is sequence and value is not string %} {{ value|map('string')|join(" ") }} {% else %} {{ value }} {% endif %}
  • {% endfor %}
{% endif %} {% if user_configs %}
User Configurations ({{ user_configs|length }})
{% for user_config in user_configs %}

    {% for record in user_config %} {% if record != 'password' %}
  • {{ record }}
    {% set value = user_config[record] %} {% if value is sequence and value is not string %} {{ value|map('string')|join(" ") }} {% else %} {{ value }} {% endif %}
  • {% endif %} {% endfor %}
{% endfor %}
{% endif %}