Ok, I was registered already in django-users, but suddenly was gotten
out. Why? So I decided to break the rule.
On Jul 23, 4:00 pm, Karen Tracey wrote:
> Please don't cross-post the same message to both django-users and
> django-developers. This question belongs on django-users.
>
> Karen
--
Yo
Please don't cross-post the same message to both django-users and
django-developers. This question belongs on django-users.
Karen
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to django-develop...@google
Hi everybody,
I have 3 models:
built-in User model,
class Project(models.Model):
author = models.ForeignKey(User, verbos_name=_('Author'),
related_name='projects')
title = models.charField(_('Title'), max_length=150)
class Vote(models.Model):
project = models.ForeignKey(Project, ver