{% extends "base.html" %} {% set section = "feeds" %} {% block head %} {% endblock %} {% block body %} {% if feed.id %}
{% else %} {% endif %}
Feed name
URL
Media Type
Determines where downloads will be saved. To configure save locations, go to My Libraries.
Updated on {% if feed.last_update %} {{ feed.last_update|timestampformat('%m/%d/%y %H:%M:%S %p') }} {% else %} Never {% endif %}
Result {% if feed.last_error %} {{ feed.last_error }} {% else %} OK {% endif %}

Download Options

Item Priority
Keep Last
Auto Download
Remove When Complete
Update Frequency minutes


{% if feed.id %}

Recent Items

{% if feed.items.count() %} {% for item in feed.items.order_by('-updated') %} {% endfor %}
Name Queued On  
{% if item.download and not item.download.deleted %} {{ item.title }} {% else %} {{ item.title }} {% endif %} {% if item.download and item.download.added %} {{ item.download.added|timestampformat('%m/%d/%Y %H:%M') }} {% else %} Never {% endif %} {% if item.download %} {% if item.download.deleted %} Re-add to queue {% endif %} {% else %} Add to queue {% endif %}
{% else %}

Feed has not been updated yet.

{% endif %} {% endif %} {% endblock %}