{% extends "sickbeard/base.html" %} {% block sickbeard_menu %} {% endblock %} {% block sickbeard_content %} {% macro item(i) -%}

{{ i.show_name }} - {{ i.season }}x{{ i.episode }} - {{ i.ep_name }}

{% if not compact_view %} {% endif %}
{{i.airs}}{% if show_airdate %} ({{i.airdate}}){% endif %}
{% if i.ep_plot|length > 2 %} {% if compact_view %}
- {{ i.ep_plot|truncate(75) }} [+]
{% else %}
Plot

{{ i.show_name }} - {{ i.season }}x{{ i.episode }} - {{ i.ep_name }}

{{ i.ep_plot|truncate(400) }}

{% endif %} {% endif %}
{%- endmacro %}
{% if missed|length %}
{{ missed|length }}
{% for show in missed %} {{item(show)}} {% endfor %}
{% endif %} {% if today|length %}

Today

{% for show in today %} {{item(show)}} {% endfor %}
{% endif %} {% if soon|length %}

Soon

{% for show in soon %} {{item(show)}} {% endfor %}
{% endif %} {% if later|length %}

Later

{% for show in later %} {{item(show)}} {% endfor %}
{% endif %}
{% endblock %}