{% macro feed_status(feed, threshold) %} {% if not feed.enabled %} status-disabled {% endif %} {% if threshold and feed.error_count > (threshold * 0.80) %} status-sick {% endif %} {% endmacro %} {% macro render_feeds() %} {% for f in feeds %}
  • *{{f.title}}

    {%if f.entry_count%}{{f.entry_count }}{% else %}No{% endif %} entries About ·  Remove {% if not f.enabled %} · Enable Again{% endif %}
  • {% endfor %} {% if offset < count %}
  • More
  • {% endif %} {% endmacro %} {% if is_xhr %} {{render_feeds()}} {% else %} {% extends "main/index.html" %} {% block panel_block %} {% if count %}
    {% else %}

    No feeds found.

    Add Feed Subscription
    {% endif %} {% endblock %} {% endif %}