{% extends 'base.html' %}{% load humanize %}{% load filters %} {% block headtitle %}Dashboard{% endblock %} {% block content %}

Dashboard

{% if num_sources == 0 %}

You don't have any media sources added. To get started, head over to the sources page and add some.

Add a source
{% endif %}

Latest downloads

{% for media in latest_downloads %}
{{ media.name }}
{{ media.download_date|timesince:now }} ago from "{{ media.source.name }}"
{% empty %} No media has been downloaded. {% endfor %}

Warnings

An upcoming release, after 2025-006-01, will introduce automated file renaming.
To prevent this change from taking effect, you can set an environment variable before that date.
See the GitHub README for more details or ask questions using issue #785.

Runtime information

User ID User ID
{{ uid }}
Group ID Group ID
{{ gid }}
Config directory Config directory
{{ config_dir }}
Downloads directory Downloads directory
{{ downloads_dir }}
Database Database
{{ database_connection }}{% if database_filesize %} ({{ database_filesize|bytesformat }}){% endif %}
{% endblock %}