aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-20 15:12:51 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-08-20 15:12:51 +0200
commit4c8bb70e705e3dd5e2bacdd49c97e40bc5396949 (patch)
treec352151708cfeac788f16f7a846d19a810622c5c /pyaggr3g470r/templates
parentAdded 'NOTIFICATION_EMAIL' env variable to the app.json file. (diff)
downloadnewspipe-4c8bb70e705e3dd5e2bacdd49c97e40bc5396949.tar.gz
newspipe-4c8bb70e705e3dd5e2bacdd49c97e40bc5396949.tar.bz2
newspipe-4c8bb70e705e3dd5e2bacdd49c97e40bc5396949.zip
It is now possible to delete articles older than a given number of weeks.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/management.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/management.html b/pyaggr3g470r/templates/management.html
index 4375ebdd..f8b7b8a0 100644
--- a/pyaggr3g470r/templates/management.html
+++ b/pyaggr3g470r/templates/management.html
@@ -8,6 +8,7 @@
{% if not_on_heroku %}
<a href="/index_database" class="btn btn-default">{{ _('Index database') }}</a>
{% endif %}
+ <a href="/expire_articles?weeks=10" class="btn btn-default">{{ _('Delete articles older than 10 weeks') }}</a>
</div>
<div class="jumbotron">
<h1>{{ _('Your Profile') }}</h1>
bgstack15