検索

phrase: max: clip:
target: order:
Results of 21 - 28 of about 28 for ModelForm (0.076 sec.)
Django 1.1 リリースノート — Django 4.0.6 ドキュメント 7390
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... til after the model has been saved. Changes to how model formsets are saved ¶ In Django 1.1, BaseModelFormSet n ... ow calls ModelForm.save() . This is backwards-incompatible if you wer ... e modifying self.initial in a model formset's __init__ , or if you relied on the internal ... uploaded files are available later Changes to how model formsets are saved Fixed the join filter's escaping be ...
https://man.plustar.jp/django/releases/1.1.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 7390
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... le() メソッドを使えるようになりました。 フォーム ¶ ModelForm が新しい Meta オプションとして field_classes を使え ... ll to set() with the keyword argument clear=True . ModelForm , and therefore ModelAdmin , internally rely on di ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 7390
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... els import MyUser class UserCreationForm ( forms . ModelForm ): """A form for creating new users. Includes all ... save () return user class UserChangeForm ( forms . ModelForm ): """A form for updating users. Includes all the ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 7324
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eField を持つ Model 上のファイルを保存するときは、 ModelForm を使えば、このプロセスはとても簡単になります。この ... django.shortcuts import render from .forms import ModelFormWithFileField def upload_file ( request ): if reque ... st . method == 'POST' : form = ModelFormWithFileField ( request . POST , request . FILES ) ... ResponseRedirect ( '/success/url/' ) else : form = ModelFormWithFileField () return render ( request , 'upload. ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
索引 — Django 4.0.6 ドキュメント 7259
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ged_data (Form の属性) changed_objects (models.BaseModelFormSet の属性) changefreq (Sitemap の属性) changelist_ ... ModelAdmin のメソッド) deleted_objects (models.BaseModelFormSet の属性) DeleteModel (django.db.migrations.opera ... ormView (組み込みクラス) django.views.generic.edit.ModelFormMixin (組み込みクラス) django.views.generic.edit.Pr ... lds (ComboField の属性) (django.views.generic.edit.ModelFormMixin の属性) (Feature の属性) (Form の属性) (Index ...
https://man.plustar.jp/django/genindex.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 7259
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... model field ¶ To customize the form field used by ModelForm , you can override formfield() . The form field cl ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
ウィジェット — Django 4.0.6 ドキュメント 7259
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... field isn't declared directly on the form (such as model form fields), you can use the Form.fields attribute: c ... lass CommentForm ( forms . ModelForm ): def __init__ ( self , * args , ** kwargs ): sup ...
https://man.plustar.jp/django/ref/forms/widgets.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 7193
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ss UserCreationForm ¶ 新しいユーザを作成するための ModelForm です。 3 つのフィールドがあります: username (ユーザ ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
PREV 1 2 3 NEXT