{% extends "base.html" %} {% block title %}Admin Dashboard - {{ cfg.site.name }}{% endblock %} {% block nav_actions %} Logged in as Admin Logout New Paste {% endblock %} {% block content %}

Global Paste Management

Active Pastes: {{ active_count }}  |  Total in DB (inc. expired): {{ pastes|length }}

0 selected
{% for paste in pastes %} {% endfor %}
ID Created Expires Views Actions
{{ paste.id }} {{ paste.created_at }} {{ paste.expires_at or 'Never' }} {{ paste.views }}
{% endblock %}