検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 102 for forms (0.023 sec.)
フォームを使う — Django 4.0.6 ドキュメント 7932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 、フォーム https://docs.djangoproject.com/search/?q=forms&release=1 といった URL が生成されるのが分かるでしょ ... A web application that uses GET requests for admin forms is a security risk: it can be easy for an attacker ... ango で実現するためのスタート地点は以下の通りです: forms.py ¶ from django import forms class NameForm ( for ... ms . Form ): your_name = forms . CharField ( label = 'Your name' , max_length = 1 ...
https://man.plustar.jp/django/topics/forms/index.html - [similar]
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 7893
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ets are available from the django.contrib.postgres.forms module. フィールド ¶ SimpleArrayField ¶ class Simp ... d validate it. For example: >>> from django import forms >>> from django.contrib.postgres.forms import Simp ... leArrayField >>> class NumberListForm ( forms . Form ): ... numbers = SimpleArrayField ( forms . ... for multidimensional data: >>> from django import forms >>> from django.contrib.postgres.forms import Simp ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 7738
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ribe the most notable changes in this release. New forms library ¶ django.newforms is Django's new form-han ... dling library. It's a replacement for django.forms , the old form/manipulator/validation framework. B ... o releases we plan to switch completely to the new forms system, and deprecate and remove the old system. T ... o this transition: We've copied the current django.forms to django.oldforms . This allows you to upgrade yo ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 7609
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ドの基本 ¶ Consider a form containing a FileField : forms.py ¶ from django import forms class UploadFileForm ... ( forms . Form ): title = forms . CharField ( max_length = ... 50 ) file = forms . FileField () このフォームをハンドリングするビュー ... Redirect from django.shortcuts import render from .forms import UploadFileForm # Imaginary function to hand ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
フォームとフィールドの検証 — Django 4.0.6 ドキュメント 7492
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d : from django.core import validators from django.forms import CharField class SlugField ( CharField ): de ... is can also be done on field definition so: slug = forms . SlugField () これは以下と同じです: slug = forms ... スの全体像は以下のようになります: from django import forms from django.core.validators import validate_email ... class MultiEmailField ( forms . Field ): def to_python ( self , value ): """Norm ...
https://man.plustar.jp/django/ref/forms/validation.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 7376
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ackends ¶ Django now includes models.JSONField and forms.JSONField that can be used on all supported databa ... ield supports the introspection, lookups, and transforms that were previously PostgreSQL-only: from django. ... s.JSONField , plus the related form field and transforms, you should adjust to use the new fields, and gene ... tabase migration. For now, the old fields and transforms are left as a reference to the new ones and are de ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
Django 2.1.15 リリースノート — Django 4.0.6 ドキュメント 7143
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a read-only view of the parent model but editable forms for the inline. Submitting these forms would not a ... he use of inlines in read-only parents with custom forms and views that explicitly implement the desired fu ... ested mechanism for partially-editable multi-model forms to the admin interface may occur in Django itself. ... parent , admin , would , only , permission , not , forms , user , inlines , escalation クイック検索 Last up ...
https://man.plustar.jp/django/releases/2.1.15.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 7104
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... h facilitates presenting messages about successful form submissions. 注釈 このページの例のいくつかは、 Auth ... ssFormView django.views.generic.base.View 例 myapp/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 ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
Django 2.2.8 リリースノート — Django 4.0.6 ドキュメント 7104
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a read-only view of the parent model but editable forms for the inline. Submitting these forms would not a ... he use of inlines in read-only parents with custom forms and views that explicitly implement the desired fu ... ested mechanism for partially-editable multi-model forms to the admin interface may occur in Django itself. ... ibility in the admin changelist view when a custom formset's prefix contains regular expression special cha ...
https://man.plustar.jp/django/releases/2.2.8.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 7026
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and the reasons behind them can be found on the NewformsAdminBranch wiki page The new admin comes with a to ... e rest of your URLs here ... ) ビュー ¶ Use django.forms instead of newforms ¶ Replace django.newforms with ... django.forms -- Django 1.0 renamed the newforms module (introdu ... ced in 0.96) to plain old forms . The oldforms module was also removed. If you're ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT