Hello,

simply use type()

>>> from django.contrib.auth.models import User
>>> u = User.objects.get(id=1)
>>> u
<User: leon>
>>> print u
leon
>>> type(u)
<class 'django.contrib.auth.models.User'>

-ld


On Aug 27, 11:59 am, MIL <needb...@gmail.com> wrote:
> Hello :o)
>
> I would like to know how to get the model name of an object.
>
> sort of like object.get_model_name or something like that
>
> Is there a way to that.
>
> I tried altering my model something like this, but it doesnt work:
>
>         def get_model_name(self):
>                 return '%s'%(class)
>
> Thanks :o)
--~--~---------~--~----~------------~-------~--~----~
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