検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 187 for Field (0.036 sec.)
Django 1.8.3 リリースノート — Django 4.0.6 ドキュメント 5144
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed, however, as of Django 1.6 the GenericIPAddresseField , IPAddressField , SlugField , and URLField form f ... you are using these validators outside of the form fields. The undocumented, internally unused validate_int ... implified and optimized. Bugfixes ¶ Fixed BaseRangeField.prepare_value() to use each base_field 's prepare_ ... nnotation with Count() ( #24835 ). Corrected HStoreField.has_changed() ( #24844 ). Reverted an optimization ...
https://man.plustar.jp/django/releases/1.8.3.html - [similar]
フォームセット (Formset) — Django 4.0.6 ドキュメント 5144
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... icleForm ( forms . Form ): ... title = forms . CharField () ... pub_date = forms . DateField () このフォーム ... alse >>> formset . errors [{}, {'pub_date': ['This field is required.']}] 見て分かるように、 formset.errors ... mple >>> formset . errors [{}, {'pub_date': ['This field is required.']}] >>> len ( formset . errors ) 2 >> ... ell as the form-TOTAL_FORMS and form-INITIAL_FORMS fields shown in the examples here, the management form a ...
https://man.plustar.jp/django/topics/forms/formsets.html - [similar]
mixinを編集する — Django 4.0.6 ドキュメント 5122
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ModelForm is manipulating. If you specify both the fields and form_class attributes, an ImproperlyConfigure ... determined by examining self.object or queryset . fields ¶ A list of names of fields. This is interpreted ... the same way as the Meta.fields attribute of ModelForm . This is a required attri ... g, which will be interpolated against the object's field attributes. For example, you could use success_url ...
https://man.plustar.jp/django/ref/class-based-views/mixins-editing.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 5122
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ryset ( request ) . using ( self . using ) def formfield_for_foreignkey ( self , db_field , request , ** kw ... y # on the 'other' database. return super () . formfield_for_foreignkey ( db_field , request , using = self ... . using , ** kwargs ) def formfield_for_manytomany ( self , db_field , request , ** kw ... y # on the 'other' database. return super () . formfield_for_manytomany ( db_field , request , using = self ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
django.apps.config — Django 4.0.6 ドキュメント 5089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , self . label ) @cached_property def default_auto_field ( self ): from django.conf import settings return ... settings . DEFAULT_AUTO_FIELD @property def _is_default_auto_field_overridden ( ... self ): return self . __class__ . default_auto_field is not AppConfig . default_auto_field def _path_fr ...
https://man.plustar.jp/django/_modules/django/apps/config.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 5089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... et you specify change list filters by specifying a field lookup, but it didn't allow you to create custom f ... st_display_links() enable dynamic customization of fields and links displayed on the admin change list. Adm ... d doesn't require the wizard to pass around hidden fields for every previous step. Django 1.4 ships with a ... handle IPv6 addresses with the new GenericIPAddressField model field, GenericIPAddressField form field and ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Django 1.8.1 リリースノート — Django 4.0.6 ドキュメント 5089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ). Fixed a migration crash when altering ManyToManyField s ( #24513 ). Fixed a crash with QuerySet.update() ... on foreign keys to one-to-one fields ( #24578 ). Fixed a regression in the model detai ... ect clause. An example query is qs.annotate(foo=F('field')).values('pk').order_by('foo')) ( #24615 ). Fixed ... e loss of null / not null column properties during field alteration of MySQL databases ( #24595 ). Fixed Ja ...
https://man.plustar.jp/django/releases/1.8.1.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 5089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ーな機能 ¶ django.contrib.admin ¶ ModelAdmin.search_fields now accepts any lookup such as field__exact . jQu ... be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display ... te_hierarchy.html , pagination.html , prepopulated_fields_js.html , search_form.html , and submit_line.html ... ag on CSRF cookies. フォーム ¶ The widget for ImageField now renders with the HTML attribute accept="image/ ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 5089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ter ( my_check , Tags . security , deploy = True ) Field, model, manager, and database checks ¶ In some cas ... -- you can piggyback on an existing registration. Fields, models, model managers, and database backends al ... der an example where you are implementing a custom field named RangedIntegerField . This field adds min and ... max arguments to the constructor of IntegerField . You may want to add a check to ensure that users ...
https://man.plustar.jp/django/topics/checks.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 5067
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ername , email = None , password = None , ** extra_fields ) ¶ User を作成、保存して返します。 The username ... set_unusable_password() will be called. The extra_fields keyword arguments are passed through to the User ... 's __init__ method to allow setting arbitrary fields on a custom user model . See Creating users for e ... ername , email = None , password = None , ** extra_fields ) ¶ create_user() と同じですが、 is_staff と is_s ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]