On Aug 22, 8:29 pm, justin jools <justinjo...@googlemail.com> wrote:
> key is used in replacement of 'id' in Google app engine (patch)
> Essentially this doesnt matter, assume it is id in normal django.
> I would just like to know how to do a list, list, detail query. When I
> pass the id from first list to query a second list in a different
> table: i.e. first list/table is car make: Audi, BMW and second list/
> table is Car Model: e.g. Audi: T100, Qauttro i get 'kind error - is
> not a sub class of...'
>
> My question is not about errors though, I would just like to know a
> method for doing list, list category drill down queries, as I cant
> find any examples. I guess another obvious example for a product
> database like this could be a grocery list: type: veg, meat/fish,
> alcohol: choice Alcohol. second list: whiskey, gin, vodka, beer:
> choice beer. third list: beer by brand.
> I think you get the idea.
>
> Thanks for your help.

No, really, I don't, sorry. What is a 'list, list, detail'? A list is
a list, and a detail view is a detail view. If you want to show a list
of items, then you'll need to identify something that defines what
that list is - if I understand correctly, it is all models of a
certain make. In which case that is what you need to do in your second
list - select the items from the Product table that all have the same
ProductMake.

So, something like:
def show_make(request, key):
    return object_list(request, Product_Model.objects.filter
(make=key))

--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to