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

{{ feed.title }}

{% if not feed.updates_enabled %}Disabled{% endif %} {% if feed.last_exception %}

{{ feed.last_exception.type_name }}:

{{ feed.last_exception.value_str }}
{{ feed.last_exception.traceback_str }}
{% endif %}
{% if not feed.updates_enabled %}
{% else %}
{% endif %} Whitelist Blacklist Custom message
{% for entry in entries %}
{% if entry|entry_is_blacklisted %}Blacklisted{% endif %} {% if entry|entry_is_whitelisted %}Whitelisted{% endif %}

{{ entry.title }}

{% if entry.author %}By {{ entry.author }} @{% endif %} {% if entry.published %} {{ entry.published.strftime('%Y-%m-%d, %T') }} {% endif %} {% if entry.summary %}
{{ entry.summary|discord_markdown }}
{% elif entry.content[0].value %}
{{ entry.content[0].value|discord_markdown }}
{% else %}
No content available.
{% endif %}
{% endfor %} {% endblock content %}