Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

here is my model :
I would like to initialise it with a script
A page contain a template

class Template(models.Model):
Nom = models.CharField(max_length=200, blank=True)
contenu = models. TextField(max_length=80000, blank=True)
Note_divers = models.ManyToManyField('note.Note_divers', rel   ated_name='Template_Note_divers_notes_Note_divers', blank=True)
def ___str__(self):
    return self.Nom
def __unicode__(self):
    return self.Nom


class Page(models.Model):
Template = models.ManyToManyField(Template, null=True, blank=True)
self_url = models.ManyToManyField('lien.Lien', related_name='pages_lien_self', null=True, blank=True)
Categorie = models.ManyToManyField(Categorie_Page, null=True, blank=True)
Liens = models.ManyToManyField('lien.Lien', related_name="Liens sur la page", null=True, blank=True)
Nom = models.CharField(max_length=200)

and my initialisation script :
The main goal is to create certain pages

   import os
   os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
   from django.db.models.loading import cache as model_cache
   if not model_cache.loaded:
       model_cache.get_models()
   from pages.models import Page, Template
   import settings

   t1 = Template(Nom="template_index",contenu="""bienvenue<br>
   <a href="../logout/">logout</a>""")
   t1.save()
   p = Page(Nom="index",Template=t1)
   p.save()

   t2 = Template(Nom="template_indexvide",contenu="""   <form method="post" action=".">{% csrf_token %}
<input type="text" name="username">
<input type="password" name="password">
<input type="submit" value="login" />
</form>""")
   t2.save()
   p = Page(Nom="indexvide",Template=t2)
   p.save()

And it gave to me :

   TypeError: 'Template' is an invalid keyword argument for this function

Regards Bussiere

share|improve this question

1 Answer

You can't declare a ManyToMany on instantiation. You need to define and save the instance first, then add the relationships.

p = Page(nom="indexvide")
p.save()
p.templates.add(t2)

(Note also naming conventions: lower case for fields, plural for many-to-many.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.