I am learning Django and the list of records in Admin just says 'object' under recent actions. I am running python 3.4 and django 1.9.5. Here is my models.py.
from django.db import models
# Create your models here.
class Entry(models.Model):
time = models.DateTimeField(auto_now_add = False, auto_now = True)
keyword = models.CharField(max_length=30)
jobs = models.IntegerField()
state = models.CharField(max_length=2)
def __str__(self):
return self.state
[edit by admin: formatting]