検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 96 for kwargs (0.049 sec.)
Django のショートカット関数 — Django 4.0.6 ドキュメント 7065
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ redirect ( to , * args , permanent = False , ** kwargs ) ¶ Returns an HttpResponseRedirect to the appropr ... or_404() ¶ get_object_or_404 ( klass , * args , ** kwargs ) ¶ Calls get() on a given model manager, but it r ... QuerySet instance from which to get the object. **kwargs Lookup parameters, which should be in the format a ... t_or_404() ¶ get_list_or_404 ( klass , * args , ** kwargs ) ¶ Returns the result of filter() on a given mode ...
https://man.plustar.jp/django/topics/http/shortcuts.html - [similar]
django.utils.functional — Django 4.0.6 ドキュメント 6947
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... wrapper__ def _lazy_proxy_unpickle ( func , args , kwargs , * resultclasses ): return lazy ( func , * result ... classes )( * args , ** kwargs ) def lazystr ( text ): """ Shortcut for the commo ... lasses ) @wraps ( func ) def wrapper ( * args , ** kwargs ): if any ( isinstance ( arg , Promise ) for arg i ... n itertools . chain ( args , kwargs . values ()) ): return lazy_func ( * args , ** kwa ...
https://man.plustar.jp/django/_modules/django/utils/functional.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 6815
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ld_for_foreignkey ( self , db_field , request , ** kwargs ): # Tell Django to populate ForeignKey widgets us ... y ( db_field , request , using = self . using , ** kwargs ) def formfield_for_manytomany ( self , db_field , ... request , ** kwargs ): # Tell Django to populate ManyToMany widgets us ... y ( db_field , request , using = self . using , ** kwargs ) The implementation provided here implements a mu ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 6763
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... angoは提供します。 filter() ¶ filter ( * args , ** kwargs ) ¶ 与えられた検索パラメータにマッチする新しい Que ... rySet を返します。 検索パラメータ ( **kwargs ) は以下の Field lookups で説明されているフォーマッ ... 使用してください。 exclude() ¶ exclude ( * args , ** kwargs ) ¶ 与えられた検索パラメータにマッチ しない 新しい ... QuerySet を返します。 検索パラメータ ( **kwargs ) は以下の Field lookups で説明されているフォーマッ ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
フォームセット (Formset) — Django 4.0.6 ドキュメント 6763
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rm ): ... def __init__ ( self , * args , user , ** kwargs ): ... self . user = user ... super () . __init__ ... ( * args , ** kwargs ) >>> ArticleFormSet = formset_factory ( MyArticle ... Form ) >>> formset = ArticleFormSet ( form_kwargs = { 'user' : request . user }) The form_kwargs may ... stance. The formset base class provides a get_form_kwargs method. The method takes a single argument - the i ...
https://man.plustar.jp/django/topics/forms/formsets.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 6697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e_url ( self ): return reverse ( 'author-detail' , kwargs = { 'pk' : self . pk }) FormView ¶ class django.vi ... ocessFormView メソッド get ( request , * args , ** kwargs ) ¶ Sets the current object instance ( self.object ... ) to None . post ( request , * args , ** kwargs ) ¶ Sets the current object instance ( self.object ... ocessFormView メソッド get ( request , * args , ** kwargs ) ¶ Sets the current object instance ( self.object ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 6697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... cFilesStorage ): def __init__ ( self , * args , ** kwargs ): kwargs [ 'file_permissions_mode' ] = 0o640 kwar ... _mode' ] = 0o760 super () . __init__ ( * args , ** kwargs ) Then set the STATICFILES_STORAGE setting to 'pat ... cFilesStorage ): def __init__ ( self , * args , ** kwargs ): manifest_storage = StaticFilesStorage ( locatio ... * args , manifest_storage = manifest_storage , ** kwargs ) Changed in Django 4.0: Support for finding paths ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
django.utils.log — Django 4.0.6 ドキュメント 6645
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... send_mail ( self , subject , message , * args , ** kwargs ): mail . mail_admins ( subject , message , * args ... , connection = self . connection (), ** kwargs ) def connection ( self ): return get_connection ( ... /%b/%Y %H:%M:%S" def __init__ ( self , * args , ** kwargs ): self . style = color_style () super () . __init ... __ ( * args , ** kwargs ) def format ( self , record ): msg = record . msg ...
https://man.plustar.jp/django/_modules/django/utils/log.html - [similar]
GEOS API — Django 4.0.6 ドキュメント 6579
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t ([]) LineString ¶ class LineString ( * args , ** kwargs ) ¶ LineString objects are instantiated using argu ... losed. LinearRing ¶ class LinearRing ( * args , ** kwargs ) ¶ LinearRing objects are constructed in the exac ... erclockwise. Polygon ¶ class Polygon ( * args , ** kwargs ) ¶ Polygon objects may be instantiated by passing ... ions ¶ MultiPoint ¶ class MultiPoint ( * args , ** kwargs ) ¶ MultiPoint objects may be instantiated by pass ...
https://man.plustar.jp/django/ref/contrib/gis/geos.html - [similar]
django.utils.safestring — Django 4.0.6 ドキュメント 6513
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... func ): @wraps ( func ) def wrapped ( * args , ** kwargs ): return safety_marker ( func ( * args , ** kwarg ...
https://man.plustar.jp/django/_modules/django/utils/safestring.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT