I have django app that submit date from the admin.py
.
here my models.py
class Attendance(models.Model):
datetimes = models.DateTimeField('Tanggal')
uid = models.ForeignKey(Employee, related_name='employeeattedance')
here the result:
there are different from the admin (local time) and my database.
why this happen?...