I've been configuring askbot and mezzanine in the same Django instance, and ran into an issue yesterday with Askbot's templating system. Basically, the mezzanine context processor was being called last, which meant that for whatever reason some context variables askbot needed weren't present, so some variables in their js code weren't being populated, which caused errors ("Warning: No message defined for tags" in the UI, plus some context errors about unexpected semicolons.So, switched the order of the context processors, and now they both seem to be running together happily. Any thoughts on the ordering of mezzanine's context processor?Hilton
I've been configuring askbot and mezzanine in the same Django instance, and ran into an issue yesterday with Askbot's templating system. Basically, the mezzanine context processor was being called last, which meant that for whatever reason some context variables askbot needed weren't present, so some variables in their js code weren't being populated, which caused errors ("Warning: No message defined for tags" in the UI, plus some context errors about unexpected semicolons.So, switched the order of the context processors, and now they both seem to be running together happily. Any thoughts on the ordering of mezzanine's context processor?Hilton