django admin print time format code example
Example: django admin.py date format
def time_seconds(self, obj):
return obj.timefield.strftime("%d %b %Y %H:%M:%S")
time_seconds.short_description = 'Precise Time'
list_display = ('id', 'time_seconds', )