Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

Commit

Permalink
Change team_members and followers fields to not required.
Browse files Browse the repository at this point in the history
Fix bug 744493.
  • Loading branch information
pmac committed Apr 11, 2012
1 parent 4a7063f commit aad0471
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/projects/models.py
Expand Up @@ -43,10 +43,12 @@ class Project(models.Model):
verbose_name=_(u'Project Owners'),
related_name=u'projects_owned')
team_members = models.ManyToManyField(Profile,
blank=True,
verbose_name=_(u'Team Members'))
topics = models.ManyToManyField('topics.Topic', verbose_name=_(u'Topics'))
featured = models.BooleanField(default=False)
followers = models.ManyToManyField(Profile,
blank=True,
verbose_name=_(u'Followers'),
related_name=u'projects_following')

Expand Down

0 comments on commit aad0471

Please sign in to comment.