Files
the-office/app/templates/episode.html

27 lines
727 B
HTML

{% extends 'content.html' %}
{% block head %}
{{ super() }}
<style>
.quote {
text-align: left;
color: black;
}
</style>
{% endblock head %}
{% block content %}
<a href="{{ url_for('viewSeason', season=episode.season_id) }}">Go to Season {{ episode.season_id }}</a>
<br>
<a href="{{ url_for('rebuildEpisode', season=episode.season_id, episode=episode.number) }}">Rebuild Episode</a>
<br>
<br>
{% for section in episode.sections %}
<div style="padding: 2rem 1rem 1rem 2rem;">
<p class="quote">
{% for quote in section.quotes %}
<span class="quote"><b>{{ quote.speaker }}:</b> {{ quote.text }}</span>
<br>
{% endfor %}
</p>
</div>
{% endfor %}
{% endblock content %}