{% extends "layout.html" %} {% block content %}
{% if user.feeds.all()|count == 0 %}

You are not subscribed to any feed. Fix this.

{% else %} {% for feed in user.feeds|sort(attribute="title") %}

{{ feed.title|safe }}

{% if feed.enabled %} {% endif %}
{% for number in range(0, feed.articles[0:9]|count-(feed.articles[0:9]|count % 3), 3) %}
{% for n in range(number, number+3) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} {{ feed.articles[n].title|safe }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date.strftime('%A, %d %B %Y') }}
{% endfor %}
{% endfor %} {% if feed.articles[0:9]|count % 3 != 0 %}
{% for n in range(feed.articles[0:9]|count-(feed.articles[0:9]|count % 3), feed.articles[0:9]|count) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} {{ feed.articles[n].title|safe }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date.strftime('%A, %d %B %Y') }}
{% endfor %}
{% endif %} {% endfor %} {% endif %}
{% endblock %}