Dear Djangos,

Is it possible to subclass a model? This example somehow doesn't work
for in the sense that I only see the geography on the admin screen.

----
from django.db import models

class Geography(models.Model):
    name = models.CharField(maxlength=30)
    def __str__(self):
        return self.name
    class Admin:
        pass

class Continent(Geography):
    pass

class Country(Geography):
    continent = models.ForeignKey(Continent)
---

Any ideas?

greetings, Oliver


--~--~---------~--~----~------------~-------~--~----~
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