diff --git a/src/agenda_culturel/forms.py b/src/agenda_culturel/forms.py index 30e3e85..fc272db 100644 --- a/src/agenda_culturel/forms.py +++ b/src/agenda_culturel/forms.py @@ -33,7 +33,6 @@ from django.utils.translation import gettext_lazy as _ from string import ascii_uppercase as auc from .templatetags.utils_extra import int_to_abc from django.utils.safestring import mark_safe -from django.utils.timezone import localtime from django.utils.formats import localize from .templatetags.event_extra import event_field_verbose_name, field_to_html import os @@ -549,17 +548,17 @@ class MergeDuplicates(Form): '
  • ' + e.title + "
  • " ) result += ( - "
  • Création : " + localize(localtime(e.created_date)) + "
  • " + "
  • Création : " + localize(e.created_date) + "
  • " ) result += ( "
  • Dernière modification : " - + localize(localtime(e.modified_date)) + + localize(e.modified_date) + "
  • " ) if e.imported_date: result += ( "
  • Dernière importation : " - + localize(localtime(e.imported_date)) + + localize(e.imported_date) + "
  • " ) result += ""