検索

phrase: max: clip:
target: order:
Results of 271 - 280 of about 438 for For (1.250 sec.)
Django 2.0.2 リリースノート — Django 4.0.6 ドキュメント 3649
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のバグを修正しました。 CVE-2018-6188: AuthenticationForm における情報漏えい ¶ A regression in Django 1.11. ... 8 made AuthenticationForm run its confirm_login_allowed() method even if an ... incorrect password is entered. This can leak information about a user, depending on what messages con ... issue is fixed with the caveat that AuthenticationForm can no longer raise the "This account is inactive ...
https://man.plustar.jp/django/releases/2.0.2.html - [similar]
Django 2.2.2 リリースノート — Django 4.0.6 ドキュメント 3649
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... validates the provided value using URLValidator before displaying the clickable link. You may customize ... o AdminURLFieldWidget.__init__() , e.g. when using formfield_overrides . Patched bundled jQuery for CVE-2 ... 019-11358: Prototype pollution ¶ jQuery before 3.4.0, mishandles jQuery.extend(true, {}, ...) be ... used by the Django admin has been patched to allow for the select2 library's use of jQuery.extend() . Bug ...
https://man.plustar.jp/django/releases/2.2.2.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 3649
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ) 関係 ¶ To define a many-to-one relationship, use ForeignKey : from django.db import models class Report ... b_date = models . DateField () reporter = models . ForeignKey ( Reporter , on_delete = models . CASCADE ) ... follows are examples of operations that can be performed using the Python API facilities. Create a few R ... r: John Smith> Note that you must save an object before it can be assigned to a foreign key relationship. ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
モデル — Django 4.0.6 ドキュメント 3649
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... class Album ( models . Model ): artist = models . ForeignKey ( Musician , on_delete = models . CASCADE ) ... eld or globally in the DEFAULT_AUTO_FIELD setting. For example: id = models . BigAutoField ( primary_key ... lways AutoField s. 詳細な (verbose) フィールド名 ¶ ForeignKey 、 ManyToManyField 、 OneToOneField の 3 つ ... irst_name = models . CharField ( max_length = 30 ) ForeignKey 、 ManyToManyField 、 OneToOneField の 3 つ ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
How to upgrade Django to a newer version — Django 4.0.6 ドキュメント 3632
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to 2.1 to 2.2) rather than to make all the changes for each feature release at once. For each feature rel ... ease, use the latest patch release (e.g. for 2.1, use 2.1.15). あるLTSから次のLTSにアップグレー ... option or the PYTHONWARNINGS environment variable. For example, to show warnings while running tests:   ... ot captured which would hide deprecation warnings. For example, if you use pytest : $ PYTHONWARNINGS = al ...
https://man.plustar.jp/django/howto/upgrade-version.html - [similar]
Django 1.11.3 リリースノート — Django 4.0.6 ドキュメント 3632
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sh on invalid input ( #28202 ). Fixed invalid HTML for a required AdminFileWidget ( #28278 ). Fixed model ... ation to set the name of class-based model indexes for models that only inherit models.Model ( #28282 ). ... mplate context. It's now an empty string (as it is for the original function-based login() view) if the c ... #28229 ). Prevented attribute values in the django/forms/widgets/attrs.html template from being localized ...
https://man.plustar.jp/django/releases/1.11.3.html - [similar]
Django 1.8.7 リリースノート — Django 4.0.6 ドキュメント 3632
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... application allows users to specify an unvalidated format for dates and passes this format to the date fi ... lter, e.g. {{ last_updated|date:user_date_format }} , then a malicious user could obtain any sec ... ngs by specifying a settings key instead of a date format. e.g. "SECRET_KEY" instead of "j/m/Y" . To reme ... ion used by the date template filter, django.utils.formats.get_format() , now only allows accessing the d ...
https://man.plustar.jp/django/releases/1.8.7.html - [similar]
Django 2.0.1 リリースノート — Django 4.0.6 ドキュメント 3632
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... incorrect class-based model index name generation for models with quoted db_table ( #28876 ). Fixed inco ... rrect foreign key constraint name for models with quoted db_ ... 28876 ). Fixed a regression in caching of a GenericForeignKey when the referenced model instance uses mor ... する問題を修正しました ( #28884 )。 QuerySet.select_for_update(of=(...)) の後に values() または values_lis ...
https://man.plustar.jp/django/releases/2.0.1.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 3632
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... しの定型コードを書くことになってしまいます ( Using a form in a view を参照)。これを避けるために、Django はフ ... 用意しています。 基本的なフォーム ¶ Given a contact form: forms.py ¶ from django import forms class Contac ... tForm ( forms . Form ): name = forms . CharField () mes ... sage = forms . CharField ( widget = forms . Textarea ) def se ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
Django 1.10.1 release notes — Django 4.0.6 ドキュメント 3607
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed the broken BaseCommand.usage() method which was for optparse support ( #27000 ). Fixed a checks framew ... ies when using RadioSelect with a ModelChoiceField form field ( #27001 ). Fixed a crash if request.META[' ... ty string ( #27005 ). Fixed the isnull lookup on a ForeignKey with its to_field pointing to a CharField o ... igrations ( #27004 ). Fixed a regression in Client.force_login() which required specifying a backend rath ...
https://man.plustar.jp/django/releases/1.10.1.html - [similar]