1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.4.X] Fixed #18530 -- Fixed a small regression in the admin filters where wrongly formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.

This commit is contained in:
Julien Phalip
2012-09-15 16:33:56 -07:00
parent 421ce44e8b
commit 336dfc3413
4 changed files with 13 additions and 5 deletions

View File

@@ -113,6 +113,7 @@ class Color2(Color):
class Thing(models.Model):
title = models.CharField(max_length=20)
color = models.ForeignKey(Color, limit_choices_to={'warm': True})
pub_date = models.DateField(blank=True, null=True)
def __unicode__(self):
return self.title