{% extends 'layouts/master-page.html' %} {% block title %}Admin page{% endblock %} {% block head %} {% endblock %} {% block content %} {% include 'subpages/breadcrumbs.html' %}
Database info {{stats['stats']['dbName']}}
{% for key, values in stats['data'].items() %} {% endfor %}
Collection #records Last update
{{ key }} {{ values['size'] }} {% if values['last_update'] is not none %} {{ values['last_update'].strftime('%d-%m-%Y - %H:%M') }} {% else %} Not updated {% endif %}
Database size: {{'%0.2f' % (stats['stats']['db_size']/1024**2)}}MB ({{'%0.2f' % (stats['stats']['db_size']/1024**3)}}GB)
Database size on disk: {{'%0.2f' % (stats['stats']['size_on_disk']/1024**2)}}MB ({{'%0.2f' % (stats['stats']['size_on_disk']/1024**3)}}GB)
Update the database manually

Sources to update (defaults to configured):

{% for feed in feeds.items()|batch(2) %}
{% for source, enabled in feed %}
{% endfor %}
{% endfor %}

Additional options:

{% if show_pwd_form %}
Change your password
Current
New
Repeat
{% endif %}
{% endblock %} {% block body_scripts %} {% endblock %}