Advertisement
vojd

django_abstract

Oct 17th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. class Feature(models.Model):
  2.     class Meta:
  3.         abstract = True
  4.  
  5. class ImageFeature(Feature):
  6.     image_field = models...
  7.  
  8. class RSSFeature(Feature):
  9.     url_field = models...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement