Convert DateTime to date

This commit is contained in:
Carlos Camara 2024-01-04 11:26:44 +01:00
parent ae5950f187
commit 9acb5f66fe

View file

@ -77,9 +77,9 @@ class Export(View):
.first()
)
if readthrough:
book.start_date = readthrough.start_date
book.finish_date = readthrough.finish_date
book.stopped_date = readthrough.stopped_date
book.start_date = readthrough.start_date.date() if readthrough.start_date else ""
book.finish_date = readthrough.finish_date.date() if readthrough.finish_date else ""
book.stopped_date = readthrough.stopped_date.date() if readthrough.stopped_date else ""
review = (
models.Review.objects.filter(