Revision history [back]
Okay, that was easy... not sure if Evgeny will accept the exact solution, but here's what I did for the faq:
- moved faq.html to faq_static.html
- created new faq.html similar to about.html (i.e. dynamic)
- added faq section to settings->flatpages
- edit meta.py to check for FORUM_FAQ setting. If doesn't exist, load faq_static, otherwise load FORUM_FAQ content:
if getattr(askbot_settings, 'FORUM_FAQ',''): return render_into_skin('faq.html', data, request) return render_into_skin('faq_static.html', data, request)
next stop, custom header :)