What we want isn’t always what we need
I found this amazing image stream on flickr (via):
I work on a simple Django Q&A app and decided that Questions and Answers should be on the same page in the admin. Django already provides that using inlines, but after using it a strange error started appearing (usually on server restart or code reload).
type object ‘AnswerInline’ has no attribute ‘date_hierarchy’
After a bit of digging, [...]