First time here? Check out the FAQ!

Revision history  [back]

In the templates it is {{ settings.APP_SHORT_NAME }}, in Python code:

from askbot.conf import settings as askbot_settings
askbot_settings.APP_SHORT_NAME

This value can be set via the "settings" -> "urls, keywords and greetings" -> "short name for your Q&A forum".

In the future (already works with the code from the github) it will also be possible to set the value via settings.py file:

ASKBOT_APP_SHORT_NAME = 'My Site' #i.e. all settings are just prefixed with ASKBOT_ for the settings.py file.

In the templates it is {{ settings.APP_SHORT_NAME }}, in Python code:

from askbot.conf import settings as askbot_settings
askbot_settings.APP_SHORT_NAME

This value can be set via the "settings" -> "urls, keywords and greetings" -> "short name for your Q&A forum".

In the future (already works with the code from the github) it will also be possible to set the value via settings.py file:

ASKBOT_APP_SHORT_NAME = 'My Site' #i.e. all settings are just prefixed with ASKBOT_ for the settings.py file.
Site'