検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 331 for using (0.094 sec.)
How to configure and use logging — Django 4.0.6 ドキュメント 4729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... that message will be sent to the logger. If you're using Django's default logging configuration, the messag ... default, they accept log messages of all levels). Using the example above, adding: { 'class' : 'logging.Fi ... mes. The namespace of a logger instance is defined using getLogger() . For example in views.py of my_app : ... payment' ) and set up logger mappings accordingly. Using logger hierarchies and propagation ¶ Logger naming ...
https://man.plustar.jp/django/howto/logging.html - [similar]
Working with Git and GitHub — Django 4.0.6 ドキュメント 4729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... GitHub , and it is recommended that you also work using GitHub. After installing Git, the first thing you ... are free to rewrite the history of this branch, by using git rebase for example. Other people shouldn't bas ... your branch you can squash the commits into one by using interactive rebase: git rebase - i HEAD ~ 2 The HE ... tream git rebase The work is automatically rebased using the branch you forked on, in the example case usin ...
https://man.plustar.jp/django/internals/contributing/writing-code/working-with-g... - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 4729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to None , which means the year will be determined using other means. get_year_format () ¶ Returns the strf ... to None , which means the month will be determined using other means. get_month_format () ¶ Returns the str ... t to None , which means the day will be determined using other means. get_day_format () ¶ Returns the strft ... to None , which means the week will be determined using other means. get_week_format () ¶ Returns the strf ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 4729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o make a TemplateResponse with a suitable template using that list of objects. To get the objects, ListView ... that overlap between the different classes you're using, and how method resolution order will affect which ... The only bit of the view that needs to worry about using SingleObjectMixin is where we want to look up the ... Form to the same URL as we're displaying an object using DetailView . DetailView で FormMixin を使用する ¶ ...
https://man.plustar.jp/django/topics/class-based-views/mixins.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 4729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rk around this problem, every time you save a form using commit=False , Django adds a save_m2m() method to ... number of forms derived from models. For example, using the previous ArticleForm class: >>> class Enhanced ... how to interact with a particular model. 注釈 When using multi-table inheritance , forms generated by a for ... odelformset_factory , a model form will be created using modelform_factory() . Often, it can be useful to s ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
mixinを編集する — Django 4.0.6 ドキュメント 4684
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s = None ) ¶ Instantiate an instance of form_class using get_form_kwargs() . If form_class isn't provided g ... are generating the form class automatically (e.g. using model ). Omitting this attribute will result in an ... used. Otherwise, a ModelForm will be instantiated using the model associated with the queryset , or with t ... equest , * args , ** kwargs ) ¶ Renders a response using a context created with get_context_data() . post ( ...
https://man.plustar.jp/django/ref/class-based-views/mixins-editing.html - [similar]
Django 1.10.1 release notes — Django 4.0.6 ドキュメント 4684
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed and User.is_anonymous properties to be compared using == , != , and | ( #26988 , #27154 ). Removed the b ... . Fixed a regression in the number of queries when using RadioSelect with a ModelChoiceField form field ( # ... red specifying a backend rather than automatically using the first one if multiple backends are configured ...
https://man.plustar.jp/django/releases/1.10.1.html - [similar]
Django 1.6.3 release notes — Django 4.0.6 ドキュメント 4684
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rds-incompatible change: Unexpected code execution using reverse() ¶ Django's URL handling is based on a ma ... querying a table which contains string values, but using a query which filters based on an integer value, M ... 9-1 encoding ( #21996 ). Fixed AttributeError when using bulk_create() with ForeignObject ( #21566 ). Fixed ... ango 1.6.3 release notes Unexpected code execution using reverse() Caching of anonymous pages could reveal ...
https://man.plustar.jp/django/releases/1.6.3.html - [similar]
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 4684
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ModelAdmin.get_autocomplete_fields() method allow using a Select2 search widget for ForeignKey and ManyToM ... er-specific creation options to GDALRaster objects using papsz_options . Allowed creating GDALRaster object ... greSQL's pgcrypto extension which can be activated using the new CryptoExtension migration operation. djang ... m management commands that use options not created using parser.add_argument() , add a stealth_options attr ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
多対多 (many-to-many) 関係 — Django 4.0.6 ドキュメント 4684
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s are examples of operations that can be performed using the Python API facilities. Create a few Publicatio ... te and add a Publication to an Article in one step using create() : >>> new_publication = a2 . publications ... ython>]> Many-to-many relationships can be queried using lookups across relationships : >>> Article . objec ... lication: Science News>]> Adding via the other end using keywords: >>> new_article = p2 . article_set . cre ...
https://man.plustar.jp/django/topics/db/examples/many_to_many.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT