This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
Episodes.Community/LandingPage/templates/landing_page.html
2017-09-24 16:53:10 -04:00

12 lines
234 B
HTML

{% for show in shows %}
<div>
<h3>{{show.name}} [{{show.abbr}}]</h3>
<p>{{show.description}}</p>
<ul>
{% for ep in show.episodes.all %}
<li>Episode {{ep.episode}} — {{ep.airdate}}</li>
{% endfor %}
</ul>
</div>
{% endfor %}