| {{ _('Statistics') }} |
{{ _('Number of files downloaded') }} |
{{ info.stats_total_files }} |
| {{ _('Total size of files downloaded') }} |
{{ info.stats_total_size }} |
| {{ _('Versions') }} |
| {{ _('SeedboxSyncFront version') }} |
{{ info.version }} |
| {{ _('SeedboxSync version') }} |
{{ info.seedboxsync_version }} |
| {{ _('SeedboxSync database version') }} |
{{ info.seedboxsync_db_version }} |
| {{ _('Cron job') }} |
| {{ _('Blackhole synchronization') }} |
{% if info.sync_blackhole == False %}
{{ _('Never executed.') }}
{% else %}
{% if info.sync_blackhole.locked == True %}
{{ _('Locked since %(since)s', since=format_datetime(info.sync_blackhole.locked_at) ) }}
{% else %}
{{ _('Unlocked since %(since)s', since=format_datetime(info.sync_blackhole.unlocked_at) ) }}
{% endif %}
{% endif %}
|
| {{ _('Seedbox synchronization') }} |
{% if info.sync_seedbox == False %}
{{ _('Never executed.') }}
{% else %}
{% if info.sync_seedbox.locked == True %}
{{ _('Locked since %(since)s', since=format_datetime(info.sync_seedbox.locked_at) ) }}
{% else %}
{{ _('Unlocked since %(since)s', since=format_datetime(info.sync_seedbox.unlocked_at) ) }}
{% endif %}
{% endif %}
|
{% endblock %}