検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 74 for messages (0.007 sec.)
メッセージフレームワーク — Django 4.0.6 ドキュメント 13738
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ために必要な設定を全て含んでいます: 'django.contrib.messages' は、 INSTALLED_APPS の中にあります。 MIDDLEWARE は ... s.middleware.SessionMiddleware' と 'django.contrib.messages.middleware.MessageMiddleware' を含みます。 デフォル ... context_processors' オプションは、 'django.contrib.messages.context_processors.messages' を含みます。 メッセー ... たくない場合は、 INSTALLED_APPS から 'django.contrib.messages' を、 MIDDLEWARE から MessageMiddleware 行を、そし ...
https://man.plustar.jp/django/ref/contrib/messages.html - [similar]
django.contrib.messages.middleware — Django 4.0.6 ドキュメント 12358
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... le of contents | Index | Modules up django.contrib.messages.middleware のソースコード from django.conf import ... settings from django.contrib.messages.storage import default_storage from django.utils.d ... wareMixin ): """ Middleware that handles temporary messages. """ def process_request ( self , request ): reque ... st . _messages = default_storage ( request ) def process_response ...
https://man.plustar.jp/django/_modules/django/contrib/messages/middleware.html - [similar]
django.contrib.messages.api — Django 4.0.6 ドキュメント 12261
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... le of contents | Index | Modules up django.contrib.messages.api のソースコード from django.contrib.messages im ... port constants from django.contrib.messages.storage import default_storage __all__ = ( "add_me ... ssage" , "get_messages" , "get_level" , "set_level" , "debug" , "info" , ... Attempt to add a message to the request using the 'messages' app. """ try : messages = request . _messages exc ...
https://man.plustar.jp/django/_modules/django/contrib/messages/api.html - [similar]
django.contrib.postgres.validators — Django 4.0.6 ドキュメント 10031
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r designed for HStore to require/restrict keys.""" messages = { "missing_keys" : _ ( "Some keys were missing: ... alse def __init__ ( self , keys , strict = False , messages = None ): self . keys = set ( keys ) self . strict ... = strict if messages is not None : self . messages = { ** self . messag ... es , ** messages } def __call__ ( self , value ): keys = set ( valu ...
https://man.plustar.jp/django/_modules/django/contrib/postgres/validators.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 9516
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nst Cross-Site Request Forgery (CSRF). A new user "messages" framework with support for cookie- and session-ba ... with someone else's credentials, is also covered. Messages framework ¶ Django now includes a robust and confi ... gurable messages framework with built-in support for cookie- and se ... for both anonymous and authenticated clients. The messages framework replaces the deprecated user message API ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
メールを送信する — Django 4.0.6 ドキュメント 8178
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nding a single email. If you need to send multiple messages, the email backend API provides an alternative . E ... lose() は、現在のメール送信の接続を閉じます。 send_messages(email_messages) sends a list of EmailMessage objec ... ilebased.EmailBackend' EMAIL_FILE_PATH = '/tmp/app-messages' # change this to a proper location このバックエン ... ス化して作ります。独自のメールバックエンドには send_messages(email_messages) メソッドを実装する必要があります。 ...
https://man.plustar.jp/django/topics/email.html - [similar]
Form fields — Django 4.0.6 ドキュメント 7900
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... <input type="checkbox" name="cc_myself"></p> error_messages ¶ Field. error_messages ¶ The error_messages argum ... ent lets you override the default messages that the field will raise. Pass in a dictionary wi ... th keys matching the error messages you want to override. For example, here is the def ... rror message: >>> name = forms . CharField ( error_messages = { 'required' : 'Please enter your name' }) >>> n ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
django.core.exceptions — Django 4.0.6 ドキュメント 7858
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ssage , dict ): self . error_dict = {} for field , messages in message . items (): if not isinstance ( message ... s , ValidationError ): messages = ValidationError ( messages ) self . error_dict [ ... field ] = messages . error_list elif isinstance ( message , list ): s ... d ( message . error_list ) else : self . message = message self . code = code self . params = params self . er ...
https://man.plustar.jp/django/_modules/django/core/exceptions.html - [similar]
設定 — Django 4.0.6 ドキュメント 7760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... om the site manager(s). This doesn't include error messages sent to ADMINS and MANAGERS ; for that, see SERVER ... alse Whether to send the SMTP Date header of email messages in the local time zone ( True ) or in UTC ( False ... ango は、実際の翻訳ファイルを含む <locale_code>/LC_MESSAGES ディレクトリに対して、これらのパス内をそれぞれ見て ... re using the default get_session_auth_hash() . All messages if you are using CookieStorage or FallbackStorage ...
https://man.plustar.jp/django/ref/settings.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 7705
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n. メッセージ ¶ The function must return a list of messages. If no problems are found as a result of the check ... filtering purposes. The concept is very similar to messages from the message framework or the logging framewor ... k . Messages are tagged with a level indicating the severity of ... message. There are also shortcuts to make creating messages with common levels easier. When using these classe ...
https://man.plustar.jp/django/topics/checks.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT