{% extends "layout.html" %} {% block content %}
{{ _('This feed contains') }} {{ feed.articles.all()|count }} {{ _('articles') }}
{% if nb_articles != 0 %}
({{ ((feed.articles.all()|count * 100 ) / nb_articles) | round(2, 'floor') }}% {{ _('of the database') }})
{% endif %}
.
{% if feed.error_count > 2 %}
{{ _("That feed has encountered too much consecutive errors and won't be retreived anymore") }}
{% elif feed.error_count > 0 %}
{{ _("That feed has encountered some errors but that counter will be reinitialized at the next successful retreiving") }}
{% endif %}
.
{% if feed.last_error %}
{{ _("Here's the last error encountered while retreiving this feed:") }}
{{ feed.last_error }}{% endif %} {{ _('Address of the feed') }}: {{ feed.link }}