{% extends "layout.html" %} {% block content %}

{{ _('You are subscribed to') }} {{ feeds.count() }} {{ _('feeds') }} · {{ _('Add a') }} {{ _('feed') }}

{% 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 %}{% endif %} {{ feed.title }} {{ feed.site_link }} ( {{ unread_article_count.get(feed.id, 0) }} ) {{ article_count.get(feed.id, 0) }}
{% endblock %}