Update Formatting

This commit is contained in:
Alexander Hosking 2022-04-25 02:07:32 -04:00
parent 11b0e1ba34
commit 58e2d7901f

View File

@ -21,12 +21,12 @@
<article class="post">
<header>
<div>
<h1>{{ cycle['id'] }}</h1>
<a class="action" href="{{ url_for('cycles.update', id=cycle['id'])}}">Edit</a>
<div class="about">Started: {{ cycle['start_time'] }} and ended: {{ cycle['end_time'] }}</div>
<div class="about"><b>Started:</b> {{ cycle['start_time'] }}</div>
<b>Ended: </b>{{ cycle['end_time'] }}</div>
</div>
</header>
<p class="body">Cycle Length: {{ cycle['cycle_length'] }} days.</p>
<p class="body">Cycle Length: <b>{{ cycle['cycle_length'] }} days</b>.</p>
<a class="action" href="{{ url_for('cycles.update', id=cycle['id'])}}">Edit</a> - {{ cycle['id'] }}
</article>
{% if not loop.last %}
<hr>