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"> <article class="post">
<header> <header>
<div> <div>
<h1>{{ cycle['id'] }}</h1> <div class="about"><b>Started:</b> {{ cycle['start_time'] }}</div>
<a class="action" href="{{ url_for('cycles.update', id=cycle['id'])}}">Edit</a> <b>Ended: </b>{{ cycle['end_time'] }}</div>
<div class="about">Started: {{ cycle['start_time'] }} and ended: {{ cycle['end_time'] }}</div>
</div> </div>
</header> </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> </article>
{% if not loop.last %} {% if not loop.last %}
<hr> <hr>