doc- and minor code updates

This commit is contained in:
Bert Constantin
2010-01-30 20:30:37 +01:00
parent c7ac78e08d
commit 2a740e9b10
5 changed files with 138 additions and 93 deletions
+8
View File
@@ -16,3 +16,11 @@ class ModelB(ModelA):
field2 = models.CharField(max_length=10)
class ModelC(ModelB):
field3 = models.CharField(max_length=10)
class SModelA(ShowFieldsAndTypes, PolymorphicModel):
field1 = models.CharField(max_length=10)
class SModelB(SModelA):
field2 = models.CharField(max_length=10)
class SModelC(SModelB):
field3 = models.CharField(max_length=10)