{% extends "base.html" %}
{% block title %} | {{ feed.title }}{% endblock %}
{% block content %}
{{ feed.title }}
{% if not feed.updates_enabled %}
- disabled
{% endif %}
{% if feed.url %}
{{ feed.url }}
{% endif %}
{% if feed.subtitle %}
{{ feed.subtitle }}
{% endif %}
{% if feed.added %}
Added: {{ feed.added.strftime('%Y-%m-%d, %T') }}
{% endif %}
{% if feed.last_exception %}
Last exception: {{ feed.last_exception }}
{% endif %}
{# Add a button to get the summary #} {% if entry.summary %} Summary {% endif %} {# Add a button to get the content #} {% if entry.content %} Content {% endif %}
{% if entry.summary %}