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 [email protected]
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
-~----------~----~----~----~------~----~------~--~---