vote up 0 vote down star

I have a model that is something like this:

class Input(models.Model):
        details = models.CharField(max_length=1000)
        user = models.ForeignKey(User)
class Case(Input):
    title  = models.CharField(max_length=200)
    views = models.IntegerField()



    class Argument(Input):
        case = models.ForeignKey(Case)
        side = models.BooleanField()

A user can submit many args, per case. I want to be able to say how many users have submitted side=true arguments.

I mean if 1 user had 10 args and another user had 2 args (both side=true) I'd want to count to be 2 not 12.

flag

31% accept rate
I hope you are not actually using "case" Python keyword in your code. – drozzy May 26 at 18:58
1  
I didn't know python has a keyword case. Can you refer me to docs on this? – Johnd May 26 at 19:40

2 Answers

vote up 2 vote down check

Can you try:

Argument.objects.filter(side=True).values('case__user').distinct().count()

I think it does what you want. It issues one SQL query:

SELECT COUNT(DISTINCT "example_input"."user_id") FROM "example_argument" INNER JOIN "example_case" ON ("example_argument"."case_id" = "example_case"."input_ptr_id") INNER JOIN "example_input" ON ("example_case"."input_ptr_id" = "example_input"."id") WHERE "example_argument"."side" = True

Edit:

For this_case, get all users whose argument.side is True:

Argument.objects.filter(case__id=this_case.id, side=True).values('user').distinct()
link|flag
Come to think of it, this should probably be done of the Case object. Like 'for this case show me how many users are on what side' – Johnd May 10 at 18:16
I've added another query to address your new requirement. Can you try? – Ayman Hourieh May 10 at 18:21
NameError: name 'this_case' is not defined – Johnd May 10 at 18:24
Yeah, you said "for this case show ...". Replace this_case with the Case object for which you want users whose argument.side is True. – Ayman Hourieh May 10 at 18:26
oh yea, sorry this looks good – Johnd May 10 at 18:28
show 4 more comments
vote up 0 vote down

I am using these method on the Case object:

 def users_agree(self):
        return self.argument_set.filter(side=True).values('user').distinct()
    def users_disagree(self):
        return self.argument_set.filter(side=False).values('user').distinct()

my template code calls count() on them

link|flag

Your Answer

Get an OpenID
or

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