Commit ad0843b8a2bbf98b60919844f3af41549d2aed44

Authored by Felipe Bormann
1 parent 1498bce1

format date is correct now

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
dashboards/views.py
... ... @@ -145,7 +145,7 @@ def parse_log_queryset_to_JSON(logs):
145 145 datum = {}
146 146 datum['user'] = log.user
147 147 datum['resource'] = log.resource
148   - datum['datetime'] = log.datetime.strftime("%d/%m/%Y")
  148 + datum['datetime'] = log.datetime.strftime("%d/%m/%Y %H:%M")
149 149 datum['action'] = log.action
150 150 datum['context'] = log.context
151 151 datum['component'] = log.component
... ...