diff options
author | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2015-07-03 15:27:36 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2015-07-03 15:27:36 +0200 |
commit | 7f3c9790fcbe513436cb515b31b4ad81f2d10336 (patch) | |
tree | b621c1e4cbd1698bfcf52695e3cc8b547cfd5e9e /pyaggr3g470r/templates/feed.html | |
parent | Minor improvements to the edit feed forms. (diff) | |
parent | fixing bug on reset link for feeds and hidding feed title for eXtraSmall device (diff) | |
download | newspipe-7f3c9790fcbe513436cb515b31b4ad81f2d10336.tar.gz newspipe-7f3c9790fcbe513436cb515b31b4ad81f2d10336.tar.bz2 newspipe-7f3c9790fcbe513436cb515b31b4ad81f2d10336.zip |
Merged in jaesivsm/pyaggr3g470r (pull request #15)
the icon feature
Diffstat (limited to 'pyaggr3g470r/templates/feed.html')
-rw-r--r-- | pyaggr3g470r/templates/feed.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html index cce74b19..c421a411 100644 --- a/pyaggr3g470r/templates/feed.html +++ b/pyaggr3g470r/templates/feed.html @@ -21,7 +21,7 @@ {{ _("Last download:") }} {{ feed.last_retrieved | datetime }}<br /> {% endif %} - {% if feed.error_count > conf.DEFAULT_MAX_ERROR %} + {% if feed.error_count >= conf.DEFAULT_MAX_ERROR %} <b>{{ _("That feed has encountered too much consecutive errors and won't be retrieved anymore.") }}</b><br /> {{ _("You can click <a href='%(reset_error_url)s'>here</a> to reset the error count and reactivate the feed.", reset_error_url=url_for("feed.reset_errors", feed_id=feed.id)) }} {% elif feed.error_count > 0 %} |