検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 195 for Object (0.048 sec.)
mixinを編集する — Django 4.0.6 ドキュメント 6921
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... standalone form. Since this is a subclass of SingleObjectMixin , instances of this mixin have access to the ... el and queryset attributes, describing the type of object that the ModelForm is manipulating. If you specify ... c.edit.FormMixin django.views.generic.detail.SingleObjectMixin メソッドと属性 model ¶ A model class. Can be ... ed, otherwise will be determined by examining self.object or queryset . fields ¶ A list of names of fields. ...
https://man.plustar.jp/django/ref/class-based-views/mixins-editing.html - [similar]
Paginator — Django 4.0.6 ドキュメント 6845
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... topic guide . Paginator class ¶ class Paginator ( object_list , per_page , orphans = 0 , allow_empty_first_ ... n using len() or iterating it directly. Paginator. object_list ¶ Required. A list, tuple, QuerySet , or othe ... r sliceable object with a count() or __len__() method. For consistent ... he first page is allowed to be empty. If False and object_list is empty, then an EmptyPage error will be rai ...
https://man.plustar.jp/django/ref/paginator.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 6812
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ): title = models . CharField ( max_length = 100 ) objects = BookManager () book = Book . objects . create_b ... ータベースから再読み込みします: >>> obj = MyModel . objects . first () >>> del obj . field >>> obj . field # ... : def test_update_result ( self ): obj = MyModel . objects . create ( val = 1 ) MyModel . objects . filter ( ... the value in the database # was updated to 2. The object's updated value needs to be reloaded # from the da ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6704
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... both anonymous and authenticated users. Hooks for object-level permissions , permissions for anonymous user ... cific database with the using() method on QuerySet objects. Individual objects can be saved to a specific da ... ay in a subsequent request (usually the next one). Object-level permissions ¶ A foundation for specifying pe ... rmissions at the per-object level has been added. Although there is no impleme ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 6596
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ng scheme. The default routing scheme ensures that objects remain 'sticky' to their original database (i.e., ... an object retrieved from the foo database will be saved on t ... tabase that should be used for read operations for objects of type model . If a database operation is able t ... est the database that should be used for writes of objects of type Model. If a database operation is able to ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 6563
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... priority = 0.5 def items ( self ): return Entry . objects . filter ( is_draft = False ) def lastmod ( self ... is a method that returns a sequence or QuerySet of objects. The objects returned will get passed to any call ... an provide it in order to specify the URL for your object. By default, location() calls get_absolute_url() o ... n each object and returns the result. Sitemap class reference ¶ ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
Model Meta options — Django 4.0.6 ドキュメント 6520
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ant to represent a model with the format app_label.object_name or app_label.model_name you can use model._me ... ¶ The attribute name of the manager, for example, 'objects' , to use for the model's _base_manager . db_tabl ... be used by default for the relation from a related object back to this one. The default is <model_name>_set ... t_to ¶ Options. order_with_respect_to ¶ Makes this object orderable with respect to the given field, usually ...
https://man.plustar.jp/django/ref/models/options.html - [similar]
TemplateResponse and SimpleTemplateResponse — Django 4.0.6 ドキュメント 6379
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and SimpleTemplateResponse ¶ Standard HttpResponse objects are static structures. They are provided with a b ... s a way to do just that. Unlike basic HttpResponse objects, TemplateResponse objects retain the details of t ... er in the response process. SimpleTemplateResponse objects ¶ class SimpleTemplateResponse ¶ 属性 ¶ SimpleTem ... be rendered. Accepts a backend-dependent template object (such as those returned by get_template() ), the n ...
https://man.plustar.jp/django/ref/template-response.html - [similar]
File オブジェクト — Django 4.0.6 ドキュメント 6347
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... が定義されています。 File クラス ¶ class File ( file_object , name = None ) [ソース] ¶ File クラスは、Python の ... file object に Django 特有の追加機能を付け加えた薄いラッパーで ... 。 file ¶ このクラスがラッピングしている、素の file object クラスです。 この属性をサブクラスで扱う場合には注意 ... など File のサブクラスは、この属性を Python の file object 以外のオブジェクトに置き換えることがあります。この ...
https://man.plustar.jp/django/ref/files/file.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 6238
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , queryset ) Also as a convenience, the ModelAdmin object is passed to the lookups method, for example if yo ... undesired that slugs change (which would cause an object's URL to change if the slug is used in it). prepop ... list view after creating, editing, or deleting an object. You can have filters cleared by setting this attr ... interface to provide feedback on the status of the objects being edited, for example: from django.contrib im ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT