{% extends "base.html" %} {% block title %} | {{ feed.title }}{% endblock %} {% block content %}

{{ feed.title }}

{% if not feed.updates_enabled %}Disabled{% endif %} {% if feed.last_exception %}Last exception: {{ feed.last_exception }}{% endif %}
{% if not feed.updates_enabled %}
{% else %}
{% endif %} Whitelist Blacklist
{% for entry in entries %}

{{ entry.title }}

By {{ entry.author }} {% if entry.published %} @ {{ entry.published.strftime('%Y-%m-%d, %T') }} {% endif %} {% if entry.summary %}
Summary
{{ entry.summary | safe }}
{% endif %} {% if entry.content %}
Content
{{ entry.content[0].value | safe }}
{% endif %}
{% endfor %} {% endblock %}