a simple solution would be to put pass the contentype id and object id
around in your url scheme

domain.com/ct_id-object_id/

from there you can get the content type, which will be able to tell
you the model, type, and give you the object.

    type = ContentType.objects.get(pk=ct_id)
    model = type.model_class()
    obj = model.objects.get(pk=obj_id)

this would also cut down on the number of view functions you need to
write. It's a mini generic view for you app, just figure out a naming
convention for templates based on the model you have :

template = template_name or "appfolder/%s_detail.html" % type.model

you can have 1 url handle just about anything

Done and Done

On Nov 22, 6:32 pm, lfrodrigues <lfrodrig...@gmail.com> wrote:
> Hello,
>
> I have these models:
>
> class Player(models.Model):
>     .....
>
> class PlayerM(Player):
>     ...
>
> If I do PlayerM.objects.all() e get all PlayerM objects and for
> Player.objects.all() I get all Player and PlayerM as expected.
>
> How can get only the objects of type Player (only retrieve the objects
> that were created with Player() constructor)?
>
> Regards,
>
> Luis

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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=.


Reply via email to