Hello I have the following Model:
class Participation(models.Model):
workflow_activity = models.ForeignKey('WorkflowActivity')
user = models.ForeignKey(User)
role = models.ForeignKey(Role)
current = models.BooleanField()
This is the many-to-many 'through' table.
I want to filter instances of workflow_activity that have either one of these conditions:
- No users assigned, ie, no entries for that workflow_activity in the Participation table
- No current active users, ie, where all the rows for workflow_activity in the Participation table have
current==False
Help with building the query would be much appreciated!
EDIT:
Hey everyone, thanks for the responses. I guess im probably approaching this thing wrong. My requirement is that im building a sort of ticketing system that has an auto assign function which assigns users to the tickets based on some selection logic. Im running the assign function as a periodic task (using celery), but for that i need to select tickets that are currently unassigned for the current state of the ticket. The current boolean is used to mark if that particular user is assigned to the current state of the ticket.
Any ideas/thoughts on implementing this?
Edit2
Heres one i thought of:
class WorkflowActivity(models.Model):
...
...
assigned_to = models.ManytoManyField('Participation') # older table without the current field
current = models.ManytoManyField('Current')
class Current(models.Model):
participant = models.ForeignKey('Participation')
Cringe-worthy I know, but its what i could come up with, any other options?