Re: Error when adding to many to Many table via Admin

2011-01-26 Thread ara
I fixed the problem; it appears I was using database settings for Django 1.1; as soon as I included the full path for sqlite3, & added a suffix of .db to my database name, all was well. On Jan 26, 4:43 pm, ara wrote: > Hi, > > I am a newbie at Django, & have created my models as follows: > > rom

Error when adding to many to Many table via Admin

2011-01-26 Thread ara
Hi, I am a newbie at Django, & have created my models as follows: rom django.db import models from django.contrib.auth.models import User # Create your models here. class Ingredient(models.Model): #user=models.ForeignKey(User) ingname = models.CharField(max_length=30) def __unicode