Re: DateField displayed as (None) in admin

2013-04-10 Thread Tomas Pelka
I forgot to mention this is Django 1.5.1. Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group,

DateField displayed as (None) in admin

2013-04-10 Thread Tomas Pelka
Hi all, for some reason Dates are displayed as (None) in admin and in shell as well. model.py: # -*- coding: utf-8 -*- from django.db import models from django.contrib import admin class Record(models.Model): date = models.DateField(_('Čas zadání'), null=True, blank=True) #, auto_now=True,