diff options
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/home.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/templates/home.html b/app/templates/home.html index e07c5fc..796b44b 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -106,9 +106,11 @@ <table class="table is-fullwidth is-striped"> <tbody> {% for record in records %} + <tr> <td>{{ record.workout.name }}</td> - <td>{{ record.finished }}</td> + <td>{{ record.finished.strftime("%m/%d/%y %-I:%M %p") }}</td> <td class="level-right"><a class="button is-small is-primary" href="#">View</a></td> + </tr> {% endfor %} </tbody> </table> |
