How do you extend the Site model in django?

Posted by John Giotta on Stack Overflow See other posts from Stack Overflow or by John Giotta
Published on 2010-05-12T18:33:03Z Indexed on 2010/05/12 18:34 UTC
Read the original article Hit count: 125

Filed under:
|
|

What is the best approach to extending the Site model in django? Creating a new model and ForeignKey the Site or there another approach that allows me to subclass the Site model?

I prefer subclassing, because relationally I'm more comfortable, but I'm concerned for the impact it will have with the built-in Admin.

© Stack Overflow or respective owner

Related posts about django-models

Related posts about django