add more text alignment fixes, create "unbuilt" parameter to track and build episodes as needed

This commit is contained in:
Xevion
2020-01-22 01:41:32 -06:00
parent 283f15794e
commit 283c4dbcc6
3 changed files with 26 additions and 7 deletions

View File

@@ -1,15 +1,26 @@
{% extends 'content.html' %}
{% block head %}
{{ super() }}
<style>
.quote {
text-align: left;
}
</style>
{% endblock head %}
{% block content %}
<a href="{{ url_for('viewSeason', season=episode.season_id) }}" >Go to Season {{ episode.season_id }}</a>
<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 %}
{% for quote in section.quotes %}
<b>{{ quote.speaker }}:</b> {{ quote.text }}
<br>
{% endfor %}
<br>
<div style="padding: 2rem 1rem 1rem 2rem;">
<p>
{% for quote in section.quotes %}
<span class="quote"><b>{{ quote.speaker }}:</b> {{ quote.text }}</span>
<br>
{% endfor %}
</p>
</div>
{% endfor %}
{% endblock content %}