mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-15 22:13:18 -06:00
15 lines
357 B
HTML
15 lines
357 B
HTML
{% extends 'content.html' %}
|
|
{% block content %}
|
|
{{ super() }}
|
|
|
|
<a href="{{ url_for('index') }}" >See all Seasons</a>
|
|
<br><br>
|
|
|
|
Season {{ season.id }}
|
|
<br>
|
|
{% for episode in season.episodes %}
|
|
<a href="{{ url_for("viewEpisode", season=season.id, episode=episode.number) }}" >Episode {{ episode.number }}</a>
|
|
<br>
|
|
{% endfor %}
|
|
|
|
{% endblock content %} |