{% if feeds.all()| count == 0 %}

{{_("No feed")}}

{% else %}
{% for feed in feeds|sort(attribute="title") %} {% endfor %}
# {{ _('Status') }} {{ _('Title') }} {{ _('Site') }} {{ _('Articles') }} {{ _('Actions') }}
{{ loop.index }} {% if feed.enabled %} {% else %} {% endif %} {% if feed.error_count >= conf.DEFAULT_MAX_ERROR %} {% endif %} {% if feed.icon_url %}{% endif %} {{ feed.title }} {{ feed.site_link }} ( {{ unread_article_count.get(feed.id, 0) }} ) {{ article_count.get(feed.id, 0) }}
{% endif %}