Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolved minor date issues. #5

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/auditlog/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
from .middleware import AuditlogMiddleware
import threading
import time
import requests
from auditlog.models import LogEntry
import pytz


try:
Expand All @@ -31,7 +34,7 @@ def disp_remote_addr(self,obj):

class LogEntryAdminMixin(object):

#GOIP API used to get user location details.
#GEOIP API used to get user location details.
headers = {
'accept': "application/json",
'content-type': "application/json"
Expand All @@ -48,7 +51,7 @@ def created(self, obj):
system_tz = pytz.timezone('UTC')
local_tz = pytz.timezone(LogEntryAdminMixin.tz_from_response) #local tz set as timezone from response
local_ts = system_tz.localize(new_ts).astimezone(local_tz) #returns datetime in the local timezone
return obj.timestamp.strftime('%b. %d, %Y, %I:%M %p') #Displays date in diff format
return local_ts.strftime('%m/%d/%Y %I:%M %p') #Displays date in diff format
created.short_description = 'Date'

def entity_type(self,obj):
Expand Down