This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
s2forums/djangobb_forum/context_processors.py
JensDiemer 18a716d577 use uncompressed jQuery in DEBUG mode for better debugging
---
 djangobb_forum/context_processors.py              |   15 ++++++++++++---
 djangobb_forum/templates/djangobb_forum/base.html |    6 +++++-
 2 files changed, 17 insertions(+), 4 deletions(-)
2012-08-07 16:44:16 +03:00

13 lines
237 B
Python

# coding: utf-8
from django.conf import settings
from djangobb_forum import settings as djangobb_settings
def forum_settings(request):
return {
'forum_settings': djangobb_settings,
'DEBUG': settings.DEBUG,
}