How come my \"date\" field doesn\'t come up in the admin system?
In my admin.py file i have
from django.contrib import admin
from glasses.players.mod
It might have to do with the auto_now_add being true. Perhaps instead of that parameter to capture the date on add, you could override the model save method to insert the datetime when the id is null.
class Rating(models.Model):
....
def save(self, *args, **kwargs)
if not self.id:
self.date = datetime.datetime.now()