検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 102 for forms (0.052 sec.)
Django Deprecation Timeline — Django 4.0.6 ドキュメント 6949
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ith historical migrations. django.contrib.postgres.forms.JSONField , django.contrib.postgres.fields.jsonb.K ... fields.FloatRangeField and django.contrib.postgres.forms.FloatRangeField will be removed. The FILE_CHARSET ... ck_aggregate_support() will be removed. The django.forms.extras package will be removed. The assignment_tag ... _with_model() The error_message argument of django.forms.RegexField will be removed. The unordered_list fil ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 6910
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ています。 基本的なフォーム ¶ Given a contact form: forms.py ¶ from django import forms class ContactForm ( ... forms . Form ): name = forms . CharField () message = forms . CharField ( widge ... t = forms . Textarea ) def send_email ( self ): # send email ... ことで構築することができます。 views.py ¶ from myapp.forms import ContactForm from django.views.generic.edit ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
Django 1.2.3 release notes — Django 4.0.6 ドキュメント 6871
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... SRF tokens. The patch also caused issues with some forms, most notably the user-editing forms in the Django ... notes 関連キーワード release , notes , トピック , forms , previous , up , next , problems , patch , packag ...
https://man.plustar.jp/django/releases/1.2.3.html - [similar]
Django 1.0.1 リリースノート — Django 4.0.6 ドキュメント 6832
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... th INSERT -only queries. Multiple fixes for inline forms in formsets. Multiple fixes for unique and unique_ ... ether model constraints in automatically-generated forms. Fixed support for custom callable upload_to decla ... dling file uploads through automatically-generated forms. Fixed support for sorting an admin change list ba ... ements , strings , literal , including , default , forms , were クイック検索 Last update: 2022年6月01日 « p ...
https://man.plustar.jp/django/releases/1.0.1.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 6716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... brary (introduced in the 0.96 release as django.newforms , and now available as simply django.forms ) and r ... rthcoming Jython 2.5 release. Generic relations in forms and admin ¶ Classes are now included in django.con ... ations in both the admin interface and in end-user forms. See the documentation for generic relations for d ... include imports of the form library from django.newforms (now located simply at django.forms ), the form_fo ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 6716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... routers is now called allow_migrate , but still performs the same function. Routers with allow_syncdb metho ... own checks for your own apps and libraries. To perform system checks, you use the check management command ... t is now possible to write custom lookups and transforms for the ORM. Custom lookups work just like Django' ... uilt-in lookups (e.g. lte , icontains ) while transforms are a new concept. The django.db.models.Lookup cla ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6638
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... m button or some JavaScript that is intended to perform some action on your website, using the credentials ... ll also use localized formats when parsing data in forms. See 表示形式のローカル化 for more details. readon ... vor of a template tag that should be inserted into forms. All contrib apps use a csrf_protect decorator to ... Form.errors ¶ Much of the validation work for ModelForms has been moved down to the model level. As a resul ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 6599
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ーとビルトインの認証フォーム ¶ Django のビルトインの forms と views は、協調して動作するユーザーモデルに対して ... bclass of AbstractUser , then you can extend these forms in this manner: from django.contrib.auth.forms imp ... del would be compatible with all the built-in auth forms and views, except for the user creation forms. Thi ... red in the app's admin.py file: from django import forms from django.contrib import admin from django.contr ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 6522
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odelAdmin は優先順位に従います: from django import forms from django.contrib import admin from myapp.models ... import Person class PersonForm ( forms . ModelForm ): class Meta : model = Person exclude ... 述の InlineModelAdmin オブジェクトと ModelAdmin.get_formsets_with_inlines() を参照してください。 ModelAdmin. ... 削除のプロセスをカスタムできます。 ModelAdmin. save_formset ( request , form , formset , change ) ¶ save_for ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
フォーム — Django 4.0.6 ドキュメント 6522
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を参照してください。 フォーム API Bound and unbound forms フォームをデータの検証に使用する Initial form valu ... Customizing BoundField Binding uploaded files to a form Subclassing forms Prefixes for forms Form fields fi ... m fields モデルフォーム関数 modelform_factory modelformset_factory inlineformset_factory Formset Functions ... lt-in-template form renderers Context available in formset templates Context available in form templates Co ...
https://man.plustar.jp/django/ref/forms/index.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT