* status: closed => reopened
* type: => Uncategorized
* resolution: fixed =>
* severity: => Normal
* easy: => 0
Comment:
i'm using Django 1.2.5 and experiencing the same. My model consists of:
{{{
Name = models.CharField(unique=True, db_index=True, max_length=255)
Outdoor = models.BooleanField(default=False, blank=True)
Floor = models.IntegerField(null=True, blank=True)
Disabled = models.BooleanField(default=False, blank=True)
}}}
my LocationAdmin(admin.ModelAdmin) consists of:
{{{
list_display = ('Name','Floor','Outdoor','Disabled')
list_editable = ('Name','Floor','Outdoor','Disabled')
}}}
When I try to tick Disabled or edit anything else in the Admin interface,
clicking on save just shows: "Please correct the errors below." and no
errors are given
Wasn't this supposed to have been fixed for 1.2? :/
--
Ticket URL: <http://code.djangoproject.com/ticket/12749#comment:12>
* status: reopened => closed
* resolution: => fixed
Comment:
Your bug does not sound like the original bug, which was about models with
no auto primary key, and with inlines in the admin - neither of which
appear to describe your situation. Please open a new bug with enough
information to reproduce your problem.
--
Ticket URL: <http://code.djangoproject.com/ticket/12749#comment:13>