Skip to content

Commit

Permalink
Fixes #1193 - Set job log created date to use ISO format in JobResult…
Browse files Browse the repository at this point in the history
… detail view.
  • Loading branch information
jathanism committed Dec 21, 2021
1 parent d4a07f5 commit f17b891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nautobot/extras/tables.py
Expand Up @@ -389,7 +389,7 @@ def log_entry_color_css(record):


class JobLogEntryTable(BaseTable):
created = tables.DateTimeColumn(verbose_name="Time", format=settings.SHORT_DATETIME_FORMAT)
created = tables.DateTimeColumn(verbose_name="Time", format="c")
grouping = tables.Column()
log_level = tables.Column(
verbose_name="Level",
Expand Down

0 comments on commit f17b891

Please sign in to comment.