Tagged Questions
2
votes
2answers
385 views
Determining Django Model Instance Types after a Query on a Base-class
Is there a way to determine what the 'real' class of a Django database object is, after it has been returned from a query for on a base class?
For instance, if I have these models...
class ...
-1
votes
2answers
128 views
Is it possible to make multiple template inheritance in django templates?
I have three html-files:
base.html
page.html
comment.html
in page.html I extend base.html. In comment.html I extend page.html. Will comment.html extend base.html's blocks?