1
0
Fork 0

ProgressUpdate doesn't need its own date field

Just use the base model's created_date
This commit is contained in:
Joel Bradshaw 2020-11-25 22:56:41 -08:00
parent 090cf2aea7
commit 64fb88cc10
4 changed files with 2 additions and 4 deletions

View file

@ -95,7 +95,7 @@
Progress Updates:
<dl class="progress-updates">
{% for progress_update in readthrough.progress_updates %}
<dt>{{ progress_update.date | naturalday }}:</dt>
<dt>{{ progress_update.created_date | naturalday }}:</dt>
<dd>{{ progress_update.progress }} of {{ book.pages }}</dd>
{% endfor %}
</dl>