{% import 'components/macros.html' as macro %} {% extends 'base.html' %} {% block header %}

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

{% endblock %} {% block content %}
{% if seedboxsync_config.get('sync_blackhole_enabled') %}
{{ macro.task_box(_('Blackhole'), 'sync-blackhole', 'blackhole') }}
{% endif %} {% set seedbox_offset = 'ms-auto' if seedboxsync_config.get('sync_blackhole_enabled') else '' %}
{{ macro.task_box(_('Seedbox'), 'sync-seedbox', 'seedbox') }}

{{ _('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 %}