検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 257 for all (0.081 sec.)
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 5745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... equest. POST ¶ A dictionary-like object containing all given HTTP POST parameters, providing that the req ... quest. FILES ¶ A dictionary-like object containing all uploaded files. Each key in FILES is the name from ... e request are converted to META keys by converting all characters to uppercase, replacing any hyphens wit ... TP_ prefix to the name. So, for example, a header called X-Bender would be mapped to the META key HTTP_X_ ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 5745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... red to be able to store arbitrary string data. Normally, this means giving it an encoding of UTF-8 or UTF ... o. SQLite always uses UTF-8 for internal encoding. All of Django's database backends automatically conver ... ng for talking to the database. They also automatically convert strings retrieved from the database into ... ave to make an assumption, and Django assumes that all bytestrings are in UTF-8. If you pass a string to ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
Generic date ビュー — Django 4.0.6 ドキュメント 5695
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... よって表示するトップレベルのインデックスページです。 allow_future を True にセットしない限り、 未来 の日付の ... 中で有効な月を表示する、年次のアーカイブページです。 allow_future を True にセットしない限り、 未来 の日付を ... になります: date_list : A QuerySet object containing all months that have objects available according to qu ... nting the first day of the next year, according to allow_empty and allow_future . previous_year : A date ...
https://man.plustar.jp/django/ref/class-based-views/generic-date-based.html - [similar]
The form rendering API — Django 4.0.6 ドキュメント 5695
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e form rendering process can be customized at several levels: Widgets can specify custom template names. ... erridden by a project. (Reusable applications typically shouldn't override built-in templates because the ... ry in django/forms/templates and then from the installed apps' templates directories using the app_direct ... widgets are located in django/forms/jinja2 and installed apps can provide templates in a jinja2 directory ...
https://man.plustar.jp/django/ref/forms/renderers.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 5695
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u get to the admin section, below. For now, remove all references to core . Replace class Admin: with adm ... in.py ¶ Remove all your inner class Admin declarations from your mode ... タマイズ例 ¶ Below is an example models.py file with all the changes you'll need to make: Old (0.96) models ... th extensibility and customization in mind. Practically, this means you'll need to rewrite all of your cl ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 5695
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... (as of 3.2.9). We highly recommend and only officially support the latest release of each series. What's ... class, Django now uses that configuration automatically, so you can remove default_app_config . default_a ... ible to declare only the application's path in INSTALLED_APPS (e.g. 'django.contrib.admin' ) rather than ... ibute. No more needing to override primary keys in all models. Maintaining the historical behavior, the d ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
一対一 (one-to-one) 関係 — Django 4.0.6 ドキュメント 5695
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... use OneToOneField . In this example, a Place optionally can be a Restaurant : from django.db import model ... e , serves_pizza = False ) Traceback (most recent call last): ... ValueError : save() prohibited to preve ... unsaved related object 'place'. Restaurant.objects.all() returns the Restaurants, not the Places. Note th ... - Ace Hardware the Restaurant was created in the call to r.place = p2: >>> Restaurant . objects . all () ...
https://man.plustar.jp/django/topics/db/examples/one_to_one.html - [similar]
GEOS API — Django 4.0.6 ドキュメント 5646
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... al operators. GEOS, now an OSGeo project, was initially developed and maintained by Refractions Research ... b.gis.geos import Point >>> pnt = Point ( 5 , 23 ) All these constructors take the keyword argument srid ... 0 , 0 , srid = 32140 )) SRID=32140;POINT (0 0) Finally, there is the fromfile() factory method which ret ... ons filling your web server's log files. This generally means that you are creating GEOS objects at the t ...
https://man.plustar.jp/django/ref/contrib/gis/geos.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 5646
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 全体を宣言します。クラスベースのビューの場合、 `` __call__()``メソッドを``async def``で宣言します( `` __in ... c view under ASGI), Django must emulate the other call style to allow your code to run. This context-swit ... ch causes a small performance penalty of around a millisecond. This ... en sync and async. If you have an ASGI server, but all your middleware and views are synchronous, it will ...
https://man.plustar.jp/django/topics/async.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 5536
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 加されてしまいます。Django のアプリケーションが INSTALLED_APPS に追加されると、以下に記載された従来の場所に ... ケーションは、 {% load %} タグを機能させるために INSTALLED_APPS 内に記述される必要があります。これは、セキュ ... タ定義の例です: def cut ( value , arg ): """Removes all values of arg from the given string""" return valu ... ): # Only one argument. """Converts a string into all lowercase""" return value . lower () 独自のフィルタ ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT