I'd try:

    tasks = Task.objects.filter(recipe_id = recipe_id).filter(build_id =
build_id)

I suppose the recipe_id and build_id are coming from the frontend through
GET parameters ?

Alex


On Wed, Jan 8, 2014 at 11:17 AM, Reyna, David <[email protected]>wrote:

>  Hi Alex,
>
> Perhaps you can answer this easily? I would like to filter the “Task” data
> base for the records that match a given recipe_id. It appears that I need
> to filter for both the FK’s “recipe_id” and “build_id”.
>
> How do I set up that query? I do not think that this is correct:
>
> def recipe(request, build_id, recipe_id):
>     …
>     tasks  = Task.objects.filter(recipe_id=recipe_id, build_id=build_id)
>
> Thanks,
> David
>
>
>



-- 
Alex Damian
Yocto Project
SSG / OTC
_______________________________________________
toaster mailing list
[email protected]
https://lists.yoctoproject.org/listinfo/toaster

Reply via email to