Re: Strip ArrayField input from admin

2015-09-03 Thread Erik Cederstrand
> Den 18/08/2015 kl. 10.54 skrev Erik Cederstrand : > > Hi list > > I have a model with a field defined like this: > > categories = ArrayField(models.CharField(max_length=32)) > > > This field is accessible via the admin interface, and when I enter >

Strip ArrayField input from admin

2015-08-18 Thread Erik Cederstrand
Hi list I have a model with a field defined like this: categories = ArrayField(models.CharField(max_length=32)) This field is accessible via the admin interface, and when I enter comma-separated values in the charfield, they are stored as an array in the DB. However, I just discovered