Hello folks. I have three models:

class Car(models.Model):
..def render(self):
....return 'This is a car'

class Ferrari(Car):
..def render(self):
....return 'This is a Ferrari'

class Porsche(Car):
..def render(self):
....return 'This is a Porsche'

I know that this is going to generate three different tables.
I want to know if is it possible to do:

cars = Car.objects.all()
for c in cars:
..print c.render()

and get the expected result, without having to check the actual type of each
car.

Thank you !

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to