aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/management.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-12 18:57:17 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-12 18:57:17 +0200
commit23506022b1e30507243aec17ba74411f984866fb (patch)
tree15b3fba3e0f3cbd55ee2766b317fe3a8e415eef5 /pyaggr3g470r/templates/management.html
parentDo not display the search button on Heroku. (diff)
downloadnewspipe-23506022b1e30507243aec17ba74411f984866fb.tar.gz
newspipe-23506022b1e30507243aec17ba74411f984866fb.tar.bz2
newspipe-23506022b1e30507243aec17ba74411f984866fb.zip
Typo.
Diffstat (limited to 'pyaggr3g470r/templates/management.html')
-rw-r--r--pyaggr3g470r/templates/management.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/management.html b/pyaggr3g470r/templates/management.html
index b28267f8..1f8b096f 100644
--- a/pyaggr3g470r/templates/management.html
+++ b/pyaggr3g470r/templates/management.html
@@ -5,7 +5,7 @@
<h1>{{ _('Your subscriptions') }}</h1>
<p>{{ _('You are subscribed to') }} {{ nb_feeds }} <a href="/feeds">{{ _('feeds') }}</a>. {{ _('Add a') }} <a href="{{ url_for("feed.form") }}">{{ _('feed') }}</a>.</p>
<p>{{ nb_articles }} {{ _('articles are stored in the database with') }} {{ nb_unread_articles }} <a href="/unread">{{ _('unread articles') }}</a>.</p>
- {% if not conf.ON_HEROKU %}
+ {% 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" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a>
bgstack15