検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 438 for For (0.157 sec.)
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 4621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dules « previous | up | next » PostgreSQL specific form fields and widgets ¶ All of these fields and widg ... ets are available from the django.contrib.postgres.forms module. フィールド ¶ SimpleArrayField ¶ class Si ... s a required argument. It specifies the underlying form field for the array. This is not used to render a ... sed to process the submitted data and validate it. For example: >>> from django import forms >>> from dja ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
File storage API — Django 4.0.6 ドキュメント 4621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... inherits from Storage and provides implementations for all the public methods thereof. location ¶ Absolut ... ge ¶ The Storage class provides a standardized API for storing files, along with a set of default behavio ... storage system, or False if the name is available for a new file. get_accessed_time ( name ) ¶ Returns a ... datetime of the last accessed time of the file. For storage systems unable to return the last accessed ...
https://man.plustar.jp/django/ref/files/storage.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 4621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... antiating a model in no way touches your database; for that, you need to save() . 注釈 __init__ メソッドを ... pop () if f . attname in field_names else DEFERRED for f in cls . _meta . concrete_fields ] instance = cl ... loaded_values = dict ( zip ( field_names , ( value for value in values if value is not DEFERRED )) ) retu ... ow the current values differ from ._loaded_values. For example, # prevent changing the creator_id of the ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
組み込みタグとフィルタ — Django 4.0.6 ドキュメント 4621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... の防止のために使用します。詳細は Cross Site Request Forgeries を参照してください。. cycle ¶ タグを実行する ... ます。 このタグは特にループ内で使うのが便利です: {% for o in some_list %} < tr class = " {% cycle 'row1' ' ... row2' %} " > ... </ tr > {% endfor %} この例では、繰り返しの最初の実行では row1 クラス ... 出力させたい場合には次のように書くことができます: {% for o in some_list %} < tr class = " {% cycle rowvalue ...
https://man.plustar.jp/django/ref/templates/builtins.html - [similar]
Django 1.6.3 release notes — Django 4.0.6 ドキュメント 4621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es a convenience function -- reverse() -- which performs this process in the opposite direction. The reve ... rse() function takes information about a view and returns a URL which would i ... nvoke that view. Use of reverse() is encouraged for application developers, as the output of reverse() ... hen making changes to URLs. One argument signature for reverse() is to pass a dotted Python path to the d ...
https://man.plustar.jp/django/releases/1.6.3.html - [similar]
Django 1.7.3 release notes — Django 4.0.6 ドキュメント 4621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... all dashes to underscores, and prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X ... thus also in Django's request.META dictionary). Unfortunately, this means that the WSGI environ cannot d ... t if a header is used in a security-sensitive way (for instance, passing authentication information along ... n if the proxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide a ...
https://man.plustar.jp/django/releases/1.7.3.html - [similar]
Installing SpatiaLite — Django 4.0.6 ドキュメント 4604
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... stall SpatiaLite from system packages or binaries. For example, on Debian-based distributions that packag ... to install the libsqlite3-mod-spatialite package. For older releases install spatialite-bin . For macOS, ... follow the instructions below . For Windows, you may find binaries on the Gaia-SINS ho ... .Y.Z $ ./configure $ make $ sudo make install 注釈 For macOS users building from source, the SpatiaLite l ...
https://man.plustar.jp/django/ref/contrib/gis/install/spatialite.html - [similar]
Django のセキュリティポリシー — Django 4.0.6 ドキュメント 4588
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e've adopted and follow a set of policies which conform to that ideal and are geared toward allowing us t ... an encrypted email ( optional ), the public key ID for security@djangoproject.com is 0xfcb84b8d1d17f80b , ... the Django team provides official security support for several versions of Django: The main development b ... nt Django release series receive security support. For example, during the development cycle leading to t ...
https://man.plustar.jp/django/internals/security.html - [similar]
Django 0.95 リリースノート — Django 4.0.6 ドキュメント 4588
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... se is intended to provide a stable reference point for developers wanting to work on production-level app ... elease, and we'll be introducing further changes before 1.0. For a clear look at which areas of the frame ... ork will change (and which ones will not change) before 1.0, see the api-stability.txt file, which lives ... g as you understand APIs may change in the future. Fortunately, most of Django's core APIs won't be chang ...
https://man.plustar.jp/django/releases/0.95.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 4588
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ord attribute of a User object is a string in this format: <algorithm>$<iterations>$<salt>$<hash> これらは ... pute on an ordinary CPU. Argon2 is not the default for Django because it requires a third-party library. ... ord storage algorithm that's specifically designed for long-term password storage. It's not the default u ... nt to use it Django supports bcrypt with minimal effort. To use Bcrypt as your default storage algorithm, ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]