Still doesn't work.  Maybe I should be more specific.

I'm editing projectprofiler/projects/models.py which hasn't needed to
import forms for anything, and when I do I get very strange errors.

Here's what it looks like now:

from django.db import models
from django.contrib.auth.models import User
from projectprofiler.middleware import threadlocals

#CHOICES defined here
#...

class Project(models.Model):
    name  = models.CharField(max_length=200)
    complexity                  = models.PositiveIntegerField
(choices=COMPLEXITY_CHOICES, default=0)
    affiliation                 = models.PositiveIntegerField
(choices=AFFILIATION_CHOICES, default=0
    description                 = models.TextField(max_length=300,
blank=True) # not required
   ...etc


...as you can see, everything is coming from django.db.models.  I have
never had to specify the actual widgets that input the data in the
admin pages on the site... they are just automatic.  What confuses me
to death is how all I need to do is add "from django import forms" to
the above code to make it break.

-Adam


Brian Neal wrote:
> On Mar 23, 3:36 pm, Adam Fraser <adam.n.fra...@gmail.com> wrote:
> > I found the SelectMultiple widget here:
> >
> > http://docs.djangoproject.com/en/dev/ref/forms/widgets/
> >
> > But I still don't know how to hook that up to a model like
> > CommaSeparatedIntegerField.
> >
> > help?
> >
>
> Did you try something like this? This is off the top of my head:
>
> class MyForm(forms.ModelForm):
>    my_choices = forms.CommaSeparatedIntegerField
> (widget=forms.SelectMultiple(choices=STAIN_CHOICES))
>
> See:
> http://docs.djangoproject.com/en/dev/ref/forms/widgets/#specifying-widgets
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to