doc_content
stringlengths
1
386k
doc_id
stringlengths
5
188
__delitem__(key) Example: del request.session['fav_color']. This raises KeyError if the given key isn’t already in the session.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.__delitem__
__getitem__(key) Example: fav_color = request.session['fav_color']
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.__getitem__
__setitem__(key, value) Example: request.session['fav_color'] = 'blue'
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.__setitem__
clear()
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.clear
clear_expired() Removes expired sessions from the session store. This class method is called by clearsessions.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.clear_expired
cycle_key() Creates a new session key while retaining the current session data. django.contrib.auth.login() calls this method to mitigate against session fixation.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.cycle_key
delete_test_cookie() Deletes the test cookie. Use this to clean up after yourself.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.delete_test_cookie
flush() Deletes the current session data from the session and deletes the session cookie. This is used if you want to ensure that the previous session data can’t be accessed again from the user’s browser (for example, the django.contrib.auth.logout() function calls it).
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.flush
get(key, default=None) Example: fav_color = request.session.get('fav_color', 'red')
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.get
get_expire_at_browser_close() Returns either True or False, depending on whether the user’s session cookie will expire when the user’s web browser is closed.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.get_expire_at_browser_close
get_expiry_age() Returns the number of seconds until this session expires. For sessions with no custom expiration (or those set to expire at browser close), this will equal SESSION_COOKIE_AGE. This function accepts two optional keyword arguments: modification: last modification of the session, as a datetime object....
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.get_expiry_age
get_expiry_date() Returns the date this session will expire. For sessions with no custom expiration (or those set to expire at browser close), this will equal the date SESSION_COOKIE_AGE seconds from now. This function accepts the same keyword arguments as get_expiry_age().
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.get_expiry_date
get_session_cookie_age() Returns the age of session cookies, in seconds. Defaults to SESSION_COOKIE_AGE.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.get_session_cookie_age
items()
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.items
keys()
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.keys
pop(key, default=__not_given) Example: fav_color = request.session.pop('fav_color', 'blue')
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.pop
set_expiry(value) Sets the expiration time for the session. You can pass a number of different values: If value is an integer, the session will expire after that many seconds of inactivity. For example, calling request.session.set_expiry(300) would make the session expire in 5 minutes. If value is a datetime or time...
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.set_expiry
set_test_cookie() Sets a test cookie to determine whether the user’s browser supports cookies. Due to the way cookies work, you won’t be able to test this until the user’s next page request. See Setting test cookies below for more information.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.set_test_cookie
setdefault()
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.setdefault
test_cookie_worked() Returns either True or False, depending on whether the user’s browser accepted the test cookie. Due to the way cookies work, you’ll have to call set_test_cookie() on a previous, separate page request. See Setting test cookies below for more information.
django.topics.http.sessions#django.contrib.sessions.backends.base.SessionBase.test_cookie_worked
class backends.cached_db.SessionStore Implements cached database-backed session store. cache_key_prefix A prefix added to a session key to build a cache key string.
django.topics.http.sessions#django.contrib.sessions.backends.cached_db.SessionStore
cache_key_prefix A prefix added to a session key to build a cache key string.
django.topics.http.sessions#django.contrib.sessions.backends.cached_db.SessionStore.cache_key_prefix
class backends.db.SessionStore Implements database-backed session store. classmethod get_model_class() Override this method to return a custom session model if you need one. create_model_instance(data) Returns a new instance of the session model object, which represents the current session state. Overriding...
django.topics.http.sessions#django.contrib.sessions.backends.db.SessionStore
create_model_instance(data) Returns a new instance of the session model object, which represents the current session state. Overriding this method provides the ability to modify session model data before it’s saved to database.
django.topics.http.sessions#django.contrib.sessions.backends.db.SessionStore.create_model_instance
class base_session.AbstractBaseSession The abstract base session model. session_key Primary key. The field itself may contain up to 40 characters. The current implementation generates a 32-character string (a random sequence of digits and lowercase ASCII letters). session_data A string containing an encoded...
django.topics.http.sessions#django.contrib.sessions.base_session.AbstractBaseSession
expire_date A datetime designating when the session expires. Expired sessions are not available to a user, however, they may still be stored in the database until the clearsessions management command is run.
django.topics.http.sessions#django.contrib.sessions.base_session.AbstractBaseSession.expire_date
get_decoded() Returns decoded session data. Decoding is performed by the session store class.
django.topics.http.sessions#django.contrib.sessions.base_session.AbstractBaseSession.get_decoded
session_data A string containing an encoded and serialized session dictionary.
django.topics.http.sessions#django.contrib.sessions.base_session.AbstractBaseSession.session_data
session_key Primary key. The field itself may contain up to 40 characters. The current implementation generates a 32-character string (a random sequence of digits and lowercase ASCII letters).
django.topics.http.sessions#django.contrib.sessions.base_session.AbstractBaseSession.session_key
class base_session.BaseSessionManager encode(session_dict) Returns the given session dictionary serialized and encoded as a string. Encoding is performed by the session store class tied to a model class. save(session_key, session_dict, expire_date) Saves session data for a provided session key, or deletes t...
django.topics.http.sessions#django.contrib.sessions.base_session.BaseSessionManager
encode(session_dict) Returns the given session dictionary serialized and encoded as a string. Encoding is performed by the session store class tied to a model class.
django.topics.http.sessions#django.contrib.sessions.base_session.BaseSessionManager.encode
save(session_key, session_dict, expire_date) Saves session data for a provided session key, or deletes the session in case the data is empty.
django.topics.http.sessions#django.contrib.sessions.base_session.BaseSessionManager.save
class SessionMiddleware
django.ref.middleware#django.contrib.sessions.middleware.SessionMiddleware
class serializers.JSONSerializer A wrapper around the JSON serializer from django.core.signing. Can only serialize basic data types. In addition, as JSON supports only string keys, note that using non-string keys in request.session won’t work as expected: >>> # initial assignment >>> request.session[0] = 'bar' >>> # ...
django.topics.http.sessions#django.contrib.sessions.serializers.JSONSerializer
class serializers.PickleSerializer Supports arbitrary Python objects, but, as described above, can lead to a remote code execution vulnerability if SECRET_KEY becomes known by an attacker.
django.topics.http.sessions#django.contrib.sessions.serializers.PickleSerializer
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-ABSOLUTE_URL_OVERRIDES
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-ADMINS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-ALLOWED_HOSTS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-APPEND_SLASH
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-AUTH_PASSWORD_VALIDATORS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-AUTH_USER_MODEL
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-AUTHENTICATION_BACKENDS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CACHE_MIDDLEWARE_ALIAS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CACHE_MIDDLEWARE_KEY_PREFIX
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CACHE_MIDDLEWARE_SECONDS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CACHES
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_AGE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_DOMAIN
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_HTTPONLY
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_NAME
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_PATH
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_SAMESITE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_COOKIE_SECURE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_FAILURE_VIEW
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_HEADER_NAME
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_TRUSTED_ORIGINS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-CSRF_USE_SESSIONS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATA_UPLOAD_MAX_MEMORY_SIZE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATA_UPLOAD_MAX_NUMBER_FIELDS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATABASE_ROUTERS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATABASES
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATE_FORMAT
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATE_INPUT_FORMATS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATETIME_FORMAT
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DATETIME_INPUT_FORMATS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEBUG
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEBUG_PROPAGATE_EXCEPTIONS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DECIMAL_SEPARATOR
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_AUTO_FIELD
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_CHARSET
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_EXCEPTION_REPORTER
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_EXCEPTION_REPORTER_FILTER
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_FILE_STORAGE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_FROM_EMAIL
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_INDEX_TABLESPACE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DEFAULT_TABLESPACE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-DISALLOWED_USER_AGENTS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_BACKEND
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_FILE_PATH
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_HOST
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_HOST_PASSWORD
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_HOST_USER
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_PORT
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_SSL_CERTFILE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_SSL_KEYFILE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_SUBJECT_PREFIX
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_TIMEOUT
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_USE_LOCALTIME
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_USE_SSL
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-EMAIL_USE_TLS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FILE_UPLOAD_DIRECTORY_PERMISSIONS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FILE_UPLOAD_HANDLERS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FILE_UPLOAD_MAX_MEMORY_SIZE
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FILE_UPLOAD_PERMISSIONS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FILE_UPLOAD_TEMP_DIR
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FIRST_DAY_OF_WEEK
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FIXTURE_DIRS
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FORCE_SCRIPT_NAME
Settings Core Settings Auth Messages Sessions Sites Static Files Core Settings Topical Index Warning Be careful when you override settings, especially when the default value is a non-empty list or dictionary, such as STATICFILES_FINDERS. Make sure you keep the components required by the features of Django you wish t...
django.ref.settings#std:setting-FORM_RENDERER