On Fri, Mar 12, 2010 at 2:43 AM, Harro wrote:
> See ticket: http://code.djangoproject.com/ticket/13095
Quoting from http://docs.djangoproject.com/en/dev/internals/contributing/#id1
"Don’t post to django-developers just to announce that you have filed
a bug report. All the tickets are mailed to a
See ticket: http://code.djangoproject.com/ticket/13095
Just posting the used code here:
# models.py
class Choice(models.Model):
"""
A choice in a poll
"""
poll = models.ForeignKey(Poll, related_name='choices',
verbose_name=_('Poll'))
choice = models.CharField(_('Choice