{% macro task_box(title, status_key, task_key, extra_classes='') %}
{{ title }}
Loading...
{% endmacro %} {% extends 'base.html' %} {% block header %}

{% block title %}{{ _('Dashboard') }}{% endblock %}

{% endblock %} {% block content %}
{% if config.sync_blackhole_enabled %} {{ task_box(_('Blackhole'), 'sync-blackhole', 'blackhole') }} {% endif %} {% set seedbox_offset = 'is-offset-4' if config.sync_blackhole_enabled else '' %} {{ task_box(_('Seedbox'), 'sync-seedbox', 'seedbox', extra_classes=seedbox_offset) }}

{{ _('Download in progress') }}

{{ _('List of downloads in progress from the seedbox to the NAS.') }}

{{ _('Loading...') }}
{{ _('An error has occurred.') }}
{{ _('No download in progress now...') }}
{{ _('Name') }} {{ _('Started') }} {{ _('Progress') }}

{{ _('Last files downloaded') }}

{{ _('List of last files downloaded from the seedbox to the NAS.') }}

{{ _('Loading...') }}
{{ _('An error has occurred.') }}
{{ _('No files downloaded yet...') }}
{{ _('Name') }} {{ _('Finished') }} {{ _('Size') }}

{{ _('Last torrents uploaded') }}

{{ _('List of last torrents uploaded from the NAS to the seedbox.') }}

{{ _('Loading...') }}
{{ _('An error has occurred.') }}
{{ _('No torrent downloaded yet...') }}
{{ _('Name') }} {{ _('Sent') }}
{% endblock %}