##// END OF EJS Templates
Use own search form and view
Use own search form and view

File last commit:

r716:a6b9dd95 1.8.1 default
r718:056bdb08 default
Show More
settings.py
17 lines | 567 B | text/x-python | PythonLexer
neko259
Moved imageboard settings to the boards settings module. Added setting to disable archive
r716 VERSION = '1.8.1 Kara'
SITE_NAME = 'Neboard'
neko259
Moved some settings to boards.settings
r333 CACHE_TIMEOUT = 600 # Timeout for caching, if cache is used
LOGIN_TIMEOUT = 3600 # Timeout between login tries
MAX_TEXT_LENGTH = 30000 # Max post length in characters
MAX_IMAGE_SIZE = 8 * 1024 * 1024 # Max image size
neko259
Moved imageboard settings to the boards settings module. Added setting to disable archive
r716
# Thread bumplimit
MAX_POSTS_PER_THREAD = 10
# Old posts will be archived or deleted if this value is reached
MAX_THREAD_COUNT = 5
THREADS_PER_PAGE = 3
DEFAULT_THEME = 'md'
LAST_REPLIES_COUNT = 3
# Enable archiving threads instead of deletion when the thread limit is reached
ARCHIVE_THREADS = True