検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 387 for This (0.059 sec.)
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 6385
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... wasn't an official, stable API. In recognition of this, we've endeavored to maintain backwards-compatibil ... e, customize, and compose complex SQL expressions. This has enabled annotate to accept expressions other t ... lity to set up test data at the class level. Using this technique can speed up the tests as compared to us ... PBKDF2 password hasher has been increased by 33%. This backwards compatible change will not affect users ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 6359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ort date >>> a = Article ( id = None , headline = "This is a test" , pub_date = date ( 2005 , 7 , 27 ), re ... om' ) >>> Article . objects . create ( headline = "This is a test" , pub_date = date ( 2005 , 7 , 27 ), re ... second story>, <Article: Paul's story>, <Article: This is a test>]> Add the same article to a different a ... uerySet [<Article: John's second story>, <Article: This is a test>]> >>> r2 . article_set . all () <QueryS ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
Triaging tickets — Django 4.0.6 ドキュメント 6342
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he state of Django's progress, we acknowledge that this will not happen. By distributing the load of Trac ... project, and every contribution helps. We can't do this without you ! Triage workflow ¶ Unfortunately, not ... ket is at any time. Along with a handful of flags, this attribute easily tells us what and who each ticket ... d words, let's start there: We've got two roles in this diagram: Mergers: people with commit access who ar ...
https://man.plustar.jp/django/internals/contributing/triaging-tickets.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 6290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e, it uses that configuration for the application. This behavior may be disabled by setting AppConfig.defa ... PS contains 'rock_n_roll' . If you need to prevent this, set default to False in the class definition. You ... nfig.name attribute tells Django which application this configuration applies to. You can define any other ... = [ 'anthology.apps.JazzManoucheConfig' , # ... ] This example shows project-specific configuration class ...
https://man.plustar.jp/django/ref/applications.html - [similar]
Django オブジェクトのシリアル化 — Django 4.0.6 ドキュメント 6290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... At the highest level, you can serialize data like this: from django.core import serializers data = serial ... e ( queryset ) data = xml_serializer . getvalue () This is useful if you want to serialize data directly t ... objects . all (), fields = ( 'name' , 'size' )) In this example, only the name and size attributes of each ... o serialize all of the base classes for the model. This is because only the fields that are locally define ...
https://man.plustar.jp/django/topics/serialization.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 6203
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... into the result that were not already present. In this case, you can let Django take care of all the auto ... safe = True ) def myfilter ( value ): return value This flag tells Django that if a "safe" string is passe ... atically escape it, if necessary. You can think of this as meaning "this filter is safe -- it doesn't intr ... adds the string xx to the end of any input. Since this introduces no dangerous HTML characters to the res ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
データベースのトランザクション — Django 4.0.6 ドキュメント 6177
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を扱う適切な方法が存在しないからです。 In practice, this feature wraps every view function in the atomic() ... committed when the block is exited without errors. This is known as durability and can be achieved by sett ... @transaction . atomic def viewfunc ( request ): # This code executes inside a transaction. do_stuff () co ... .db import transaction def viewfunc ( request ): # This code executes in autocommit mode (Django's default ...
https://man.plustar.jp/django/topics/db/transactions.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6151
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... be supported on the as-yet-unreleased Python 2.7. This change should affect only a small number of Django ... gainst Cross-Site Request Forgery (CSRF) attacks . This type of attack occurs when a malicious website con ... been added. Although there is no implementation of this in core, a custom authentication backend can provi ... de this implementation and it will be used by django.contr ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
Admin actions — Django 4.0.6 ドキュメント 6125
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u look at any change list in the admin, you'll see this feature in action; Django ships with a "delete sel ... ないことは重要な注意点です。 If you wish to override this behavior, you can override ModelAdmin.delete_query ... Read on to find out how to add your own actions to this list. Writing actions ¶ The easiest way to explain ... e A common task we might perform with a model like this is to update an article's status from "draft" to " ...
https://man.plustar.jp/django/ref/contrib/admin/actions.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 6108
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The name of the application the model is part of. This is taken from the app_label attribute of the model ... ame ¶ The human-readable name of the content type. This is taken from the verbose_name attribute of the mo ... del. Let's look at an example to see how this works. If you already have the contenttypes applic ... jects from that model: ContentType. get_object_for_this_type ( ** kwargs ) ¶ Takes a set of valid lookup a ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT