Tagged Questions
2
votes
2answers
47 views
Django: Saving multiple ManyToMany fields within a transaction
this is the representation of my models:
class B(models.Model):
"""I'm a dummy model, so doesn't pay atention of what I do"""
name = models.CharField(max_length=250)
class A(models.Model):
...
1
vote
2answers
194 views
How do I exclude current object in ManyToMany query?
I have two basic models, Story and Category:
class Category(models.Model):
title = models.CharField(max_length=50)
slug = models.SlugField()
...
class Story(models.Model):
headline = ...
1
vote
4answers
3k views
Django model custom save with ManyToManyField problem
I know this question has been posted multiple times but I still couldn't find a definite answer to this problem. So, here I go:
class Invoice(models.Model):
program = models.ForeignKey(Program)
...
0
votes
1answer
135 views
Django: ManyToManyField with additional Column
I am trying to create a job application-form with Django.
Basically, I created two models.
softwareskill_model
application_model
The admin can log into the admin-section and add new ...