検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 187 for Field (0.068 sec.)
モデル — Django 4.0.6 ドキュメント 5067
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rson ( models . Model ): first_name = models . CharField ( max_length = 30 ) last_name = models . CharField ... cian ( models . Model ): first_name = models . CharField ( max_length = 50 ) last_name = models . CharField ... ( max_length = 50 ) instrument = models . CharField ( max_length = 100 ) class Album ( models . Model ... on_delete = models . CASCADE ) name = models . CharField ( max_length = 100 ) release_date = models . DateF ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 5067
" + 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 Upload ... FileForm ( forms . Form ): title = forms . CharField ( max_length = 50 ) file = forms . FileField () こ ... には、キーと、それぞれのキーに対応するフォームの FileField (または ImageField または他の FileField のサブクラ ... if the request method was POST , at least one file field was actually posted, and the <form> that posted th ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
django.core.files.uploadedfile — Django 4.0.6 ドキュメント 5034
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tream-to-memory). """ def __init__ ( self , file , field_name , name , content_type , size , charset , cont ... ype , size , charset , content_type_extra ) self . field_name = field_name def open ( self , mode = None ): ...
https://man.plustar.jp/django/_modules/django/core/files/uploadedfile.html - [similar]
Django 1.4.11 release notes — Django 4.0.6 ドキュメント 5034
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... query itself had been manipulated. Django's model field classes are aware of their own types and most such ... e-level type before querying. However, three model field classes did not correctly convert their arguments: ... FilePathField GenericIPAddressField IPAddressField These three f ... querying. Additionally, developers of custom model fields are now warned via documentation to ensure their ...
https://man.plustar.jp/django/releases/1.4.11.html - [similar]
Django 1.5.6 release notes — Django 4.0.6 ドキュメント 5034
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... query itself had been manipulated. Django's model field classes are aware of their own types and most such ... e-level type before querying. However, three model field classes did not correctly convert their arguments: ... FilePathField GenericIPAddressField IPAddressField These three f ... querying. Additionally, developers of custom model fields are now warned via documentation to ensure their ...
https://man.plustar.jp/django/releases/1.5.6.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 5012
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ラガブルなファイルストレージ ¶ Django's built-in FileField and ImageField now can take advantage of pluggable ... the release. Multi-table model inheritance with to_field ¶ If you're using multiple table model inheritance ... at: child models using a custom parent_link and to_field will cause database integrity errors. A set of mod ... ass Parent ( models . Model ): name = models . CharField ( max_length = 10 ) other_value = models . Integer ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
Django 1.7.1 release notes — Django 4.0.6 ドキュメント 5012
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gs in 1.7. Bugfixes ¶ Allowed related many-to-many fields to be referenced in the admin ( #23604 ). Added a ... 1 ). Allowed inline and hidden references to admin fields ( #23431 ). The @deconstructible decorator now fa ... ing of models with a self-referential many-to-many field ( ManyToManyField('self') ) ( #23503 ). Added the ... rations ( #23537 ). Coerced the related_name model field option to Unicode during migration generation to g ...
https://man.plustar.jp/django/releases/1.7.1.html - [similar]
Django 1.7.6 release notes — Django 4.0.6 ドキュメント 5012
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n XSS attack via properties in ModelAdmin.readonly_fields ¶ The ModelAdmin.readonly_fields attribute in the ... Django admin allows displaying model fields and model attributes. While the former were corre ... nerability, every model attribute used in readonly_fields that is not an actual model field (e.g. a propert ... foreign key constraint when converting an existing field to a foreign key ( #24447 ). 目次 Django 1.7.6 rel ...
https://man.plustar.jp/django/releases/1.7.6.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 4979
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sociated with one, or multiple, sites. The content field may optionally be left blank if you prefer to put ... system. The FlatPage model has an enable_comments field that isn't used by contrib.flatpages , but that co ... atPageAdmin class FlatPageAdmin ( FlatPageAdmin ): fieldsets = ( ( None , { 'fields' : ( 'url' , 'title' , ... vanced options' ), { 'classes' : ( 'collapse' ,), 'fields' : ( 'enable_comments' , 'registration_required' ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
The "sites" framework — Django 4.0.6 ドキュメント 4979
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... del terminology, that's represented by a ManyToManyField in the Article model: from django.contrib.sites.mo ... rticle ( models . Model ): headline = models . CharField ( max_length = 200 ) # ... sites = models . ManyTo ... ManyField ( Site ) This accomplishes several things quite ni ... rticle ( models . Model ): headline = models . CharField ( max_length = 200 ) # ... site = models . Foreign ...
https://man.plustar.jp/django/ref/contrib/sites.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT