検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 78 for email (0.023 sec.)
The "sites" framework — Django 4.0.6 ドキュメント 6914
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r display ¶ LJWorld.com and Lawrence.com both have email alert functionality, which lets readers sign up to ... der signs up on a web form and immediately gets an email saying, "Thanks for your subscription." It'd be in ... , 'editor@ %s ' % current_site . domain , [ user . email ], ) # ... On Lawrence.com, this email has the sub ... ibing to lawrence.com alerts." On LJWorld.com, the email has the subject "Thanks for subscribing to LJWorld ...
https://man.plustar.jp/django/ref/contrib/sites.html - [similar]
Working with Git and GitHub — Django 4.0.6 ドキュメント 6832
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... first thing you should do is set up your name and email: $ git config --global user.name "Your Real Name" ... $ git config --global user.email "you@email.com" Note that user.name should be your ... name, not your GitHub nick. GitHub should know the email you use in the user.email field, as this will be u ...
https://man.plustar.jp/django/internals/contributing/writing-code/working-with-g... - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 6749
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tic files (e.g. images, JavaScript, CSS) . sendtestemail ¶ django-admin sendtestemail [email [email ...]] ¶ ... Sends a test email (to confirm email sending through Django is workin ... (s) specified. For example: django - admin sendtestemail foo @example . com bar @example . com There are a ... mbination of them together: --managers ¶ Mails the email addresses specified in MANAGERS using mail_manager ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
Form fields — Django 4.0.6 ドキュメント 6749
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... alue: >>> from django import forms >>> f = forms . EmailField () >>> f . clean ( 'foo@example.com' ) 'foo@e ... xample.com' >>> f . clean ( 'invalid email address' ) Traceback (most recent call last): ... ... ValidationError : ['Enter a valid email address.'] field のコアとなる引数 ¶ 各 Field クラス ... essage = forms . CharField () ... sender = forms . EmailField ( help_text = 'A valid email address, please. ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 6708
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nization and writing errors. Draft a blog post and email announcement. Update version numbers and create th ... project.com . Post the blog entry and send out the email announcements. Update version numbers post-release ... igning command below, where you@example.com is the email address associated with the key you want to use. A ... one week before the release. The template for that email and a list of the recipients are in the private dj ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
バリデータ — Django 4.0.6 ドキュメント 6708
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s overridden, TypeError is raised. Defaults to 0 . EmailValidator ¶ class EmailValidator ( message = None , ... or if validation fails. Defaults to "Enter a valid email address" . code ¶ バリデーションが失敗した場合に V ... フォルトは "invalid" です。 allowlist ¶ Allowlist of email domains. By default, a regular expression (the dom ... ovides a full list of valid URI schemes . validate_email ¶ validate_email ¶ An EmailValidator instance with ...
https://man.plustar.jp/django/ref/validators.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 6666
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... last_name = models . CharField ( max_length = 30 ) email = models . EmailField () def __str__ ( self ): ret ... rter ( first_name = 'John' , last_name = 'Smith' , email = 'john@example.com' ) >>> r . save () >>> r2 = Re ... rter ( first_name = 'Paul' , last_name = 'Jones' , email = 'paul@example.com' ) >>> r2 . save () Create an ... rter ( first_name = 'John' , last_name = 'Smith' , email = 'john@example.com' ) >>> Article . objects . cre ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 6584
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ssion. For example, to annotate each post with the email address of the author of the newest comment on tha ... ) >>> Post . objects . annotate ( newest_commenter_email = Subquery ( newest . values ( 'email' )[: 1 ])) O ... looks like: SELECT "post" . "id" , ( SELECT U0 . "email" FROM "comment" U0 WHERE U0 . "post_id" = ( "post" ... . "created_at" DESC LIMIT 1 ) AS "newest_commenter_email" FROM "post" 注釈 The examples in this section are ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
フォームを使う — Django 4.0.6 ドキュメント 6543
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... とブラウザ検証 If your form includes a URLField , an EmailField or any integer field type, Django will use th ... e url , email and number HTML5 input types. By default, browsers ... eld ( widget = forms . Textarea ) sender = forms . EmailField () cc_myself = forms . BooleanField ( require ... message 、 sender 、 cc_myself です。 CharField 、 EmailField 、 BooleanField はフィールドの種類です; すべて ...
https://man.plustar.jp/django/topics/forms/index.html - [similar]
Django 1.4.21 release notes — Django 4.0.6 ドキュメント 6474
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in input ¶ Some of Django's built-in validators ( EmailValidator , most seriously) didn't prohibit newline ... f you use values with newlines in HTTP response or email headers, you can suffer from header injection atta ... itself isn't vulnerable because HttpResponse and the mail sending utilities in django.core.mail prohibit ne ... ed in Django, if you're creating HTTP responses or email messages in other ways, it's a good idea to ensure ...
https://man.plustar.jp/django/releases/1.4.21.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT