Opened 16 years ago

Closed 16 years ago

#7219 closed (invalid)

edit_inline=models.TABULAR

Reported by: ogiaquino@… Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hello authors can you please help me with this code:

class Choice(models.Model):

poll = models.ForeignKey(Poll, edit_inline=models.TABULAR, num_in_admin=3)
choice = models.CharField(max_length=200, core=True)
votes = models.IntegerField(core=True)

def unicode(self):

return self.choice

while im trying to add choice I get an error message saying:

TypeError at /admin/polls/poll/add/
'int' object is unsubscriptable

i think edit_inline=models.TABULAR is the culprit, if I remove this and use inline class like this:

class Admin:

pass

everything is working fine. Please help me on correcting this, is this a Django bug?

Thanks and regards,
Paulo :-)

Change History (1)

comment:1 by ElliottM, 16 years ago

Resolution: invalid
Status: newclosed

The ticket system is designed for bugs and enhancements to django, not for questions and support. The best place to ask is http://groups.google.com/group/django-users

Note: See TracTickets for help on using tickets.
Back to Top