{% extends "layout.html" %} {% block content %}
{{ _('This feed contains') }} {{ feed.articles.all()|count }} {{ _('articles') }}.
{{ _('Address of the feed') }}: {{ feed.link }}
{% if feed.site_link != "" %}
{{ _('Address of the site') }}: {{ feed.site_link }}
{% endif %}
{% if feed.last_retrieved %}
{{ _("Last download:") }} {{ feed.last_retrieved | datetime }}
{% endif %}
{% if feed.error_count > 2 %}
{{ _("That feed has encountered too much consecutive errors and won't be retrieved anymore.") }}
{{ _("You can click here 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 %}
{{ _("The download of this feed has encountered some problems. However its error counter will be reinitialized at the next successful retrieving.") }}
{% endif %}
{% if feed.last_error %}
{{ _("Here's the last error encountered while retrieving this feed:") }}
{{ feed.last_error }}