検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 387 for This (0.111 sec.)
Django 1.5.6 release notes — Django 4.0.6 ドキュメント 4702
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... onvenience function -- reverse() -- which performs this process in the opposite direction. The reverse() f ... pass a dotted Python path to the desired view. In this situation, Django will import the module indicated ... xecution with side effects on importing. To remedy this, reverse() will now only accept and import dotted ... y modules the developer intended to be imported in this fashion can or will be imported. Caching of anonym ...
https://man.plustar.jp/django/releases/1.5.6.html - [similar]
Django 1.5.9 release notes — Django 4.0.6 ドキュメント 4702
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ser to a different host. An attacker could exploit this, for example, by redirecting users to a phishing s ... te designed to ask for user's passwords. To remedy this, URL reversing now ensures that no URL starts with ... cond slash with its URL encoded counterpart (%2F). This approach ensures that semantics stay the same, whi ... the scheme. File upload denial-of-service ¶ Before this release, Django's file upload handing in its defau ...
https://man.plustar.jp/django/releases/1.5.9.html - [similar]
条件付きビュー — Django 4.0.6 ドキュメント 4702
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... copies of a resource that they have already seen. This is commonly used when retrieving a web page (using ... django.views.decorators.http.condition decorator. This decorator uses the two functions (you only need to ... he request's method is safe ( GET or HEAD ). Using this feature usefully is probably best explained with a ... n example. Suppose you have this pair of models, representing a small blog system: ...
https://man.plustar.jp/django/topics/conditional-view-processing.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 4676
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... args More complex examples are beyond the scope of this document, but remember - for any configuration of ... ia the django.contrib.admindocs application. To do this provide descriptive text in a description class at ... olumn in MySQL is called datetime . You can handle this in a db_type() method by checking the connection.v ... nse to have a CharMaxlength25Field , shown here: # This is a silly example of hard-coded parameters. class ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
組み込みタグとフィルタ — Django 4.0.6 ドキュメント 4676
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a cycle without advancing to the next value. To do this, give the {% cycle %} tag a name, using "as", like ... this: {% cycle 'row1' 'row2' as rowcolors %} サイクル名 ... ましょう。 使用例: {% filter force_escape | lower %} This text will be HTML-escaped, and will appear in all ... } </ li > {% empty %} < li > Sorry, no athletes in this list. </ li > {% endfor %} </ ul > 上記の例は以下の ...
https://man.plustar.jp/django/ref/templates/builtins.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 4659
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... reference to the new ones and are deprecated as of this release . DEFAULT_HASHING_ALGORITHM settings ¶ The ... ility with the older versions of Django. Note that this requires Django 3.1.1+. Once the transition to 3.1 ... ou can stop overriding DEFAULT_HASHING_ALGORITHM . This setting is deprecated as of this release, because ... est in order to set CSS and ARIA role affordances. This requires using 'django.template.context_processors ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
The form rendering API — Django 4.0.6 ドキュメント 4633
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... derers ¶ DjangoTemplates ¶ class DjangoTemplates ¶ This renderer uses a standalone DjangoTemplates engine ... TemplatesSetting renderer. Jinja2 ¶ class Jinja2 ¶ This renderer is the same as the DjangoTemplates render ... an provide templates in a jinja2 directory. To use this backend, all the forms and widgets in your project ... tes for widgets that don't have any, you can't use this renderer. For example, django.contrib.admin doesn' ...
https://man.plustar.jp/django/ref/forms/renderers.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 4633
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 処理が可能なフレームワークに作り変える旅を始めます。 This is in addition to our existing WSGI support. Djang ... e to applications that run under ASGI, however. At this stage async support only applies to the outer ASGI ... want to learn more. Note that as a side-effect of this change, Django is now aware of asynchronous event ... . If you were using Django from async code before, this may trigger if you were doing it incorrectly. If y ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 4633
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メソッド ¶ Every ModelForm also has a save() method. This method creates and saves a database object from th ... del instance as the keyword argument instance ; if this is supplied, save() will update that instance. If ... タを保存することが不可能だからです。 To work around this problem, every time you save a form using commit=F ... ude all fields automatically, or remove only some. This fundamental approach is known to be much less secu ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
GeoDjango Model API — Django 4.0.6 ドキュメント 4607
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... les « previous | up | next » GeoDjango Model API ¶ This document explores the details of the GeoDjango Mod ... el API. Throughout this section, we'll be using the following geographic m ... ugh the details of geodesy are beyond the scope of this documentation, the general problem is that the ear ... a spatial index for the given geometry field. 注釈 This is different from the db_index field option becaus ...
https://man.plustar.jp/django/ref/contrib/gis/model-api.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT