Can you post the entire traceback for the error, and the view code as well?
-James On Jun 2, 2015 12:47 AM, "Shekar Tippur" <ctip...@gmail.com> wrote: > Hello, > > I am trying to save post data and I get a error. I am trying to use enum > field. > > prefs' is an invalid keyword argument for this function > > Request Method:POSTRequest URL:http://127.0.0.1:8000/setPrefs/Django > Version:1.8.2Exception Type:TypeError > > Here is my model > > class UserPrefs(models.Model): > > Preferences = ( > ('0','Likes'), > ('1','Dislikes'), > ('2','Shared'), > ('3','Rejected'), > ) > user = models.ForeignKey(AuthUser, related_name='Screens') > #user = models.ForeignKey(AuthUser) > address = models.ForeignKey(Address) > prefs = models.CharField(max_length=1,choices=Preferences) > class Meta: > #managed = False > db_table = 'user_pref' > > def save(self, *args, **kwargs): > super(Screens, self).save(*args, **kwargs) > > > Appreciate if someone can shed some light on this. > > > - Shekar > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/206ffba0-c578-4bbd-8749-7d174d42cc93%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/206ffba0-c578-4bbd-8749-7d174d42cc93%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2Be%2BciUY1DRzRCHJSBjqFK-XXEqkMZz6zjMkxw3bvrmkJ0DF9A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.