検索

phrase: max: clip:
target: order:
Results of 231 - 240 of about 438 for For (0.121 sec.)
表示形式のローカル化 — Django 4.0.6 ドキュメント 3807
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... をセットする必要があります。 注釈 To enable number formatting with thousand separators, it is necessary t ... ngs file. Alternatively, you could use intcomma to format numbers in your template. 注釈 There is a relat ... ls if Django should activate translation. See 翻訳 for more details. フォームでのロケールを認識する入力 ¶ ... )、 %p (AM/PM) を使うことができません。 To enable a form field to localize input and output data use its l ...
https://man.plustar.jp/django/topics/i18n/formatting.html - [similar]
Django のローカライズ — Django 4.0.6 ドキュメント 3790
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... roduce yourself on the Django internationalization forum . Specialties of Django translation に関するノー ... tion resource you want to update on the team page. For example the "core" resource refers to the translat ... e opportunity to complete and fix the translations for your language! フォーマット ¶ You can also review ... conf/locale/<locale>/formats.py . This file describes the date, time and nu ...
https://man.plustar.jp/django/internals/contributing/localizing.html - [similar]
PostgreSQL specific aggregation functions — Django 4.0.6 ドキュメント 3790
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... fault aliases, so you must explicitly provide one. For example: >>> SomeModel . objects . aggregate ( arr ... ments in the result list. Examples are the same as for ArrayAgg.ordering . Usage example: class Room ( mo ... otelReservation ( model . Model ): room = models . ForeignKey ( 'Room' , on_delete = models . CASCADE ) s ... nts in the result string. Examples are the same as for ArrayAgg.ordering . バージョン 4.0 で非推奨: If th ...
https://man.plustar.jp/django/ref/contrib/postgres/aggregates.html - [similar]
SchemaEditor — Django 4.0.6 ドキュメント 3790
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... like transactions and deferred SQL (like creating ForeignKey constraints). It exposes all possible opera ... ypes of change are not possible on all databases - for example, MyISAM does not support foreign key const ... ting or maintaining a third-party database backend for Django, you will need to provide a SchemaEditor im ... el ( model ) ¶ Creates a new table in the database for the provided model, along with any unique constrai ...
https://man.plustar.jp/django/ref/schema-editor.html - [similar]
Django 1.11.5 リリースノート — Django 4.0.6 ドキュメント 3790
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... escaping was disabled in a portion of the template for the technical 500 debug page. Given the right circ ... new in GEOS 3.6.2) ( #28441 ). Added compatibility for cx_Oracle 6 ( #28498 ). Fixed select widget render ... ng scheme on Oracle. This causes errors on INSERTs for some tables if 'use_returning_into': False is in t ... ES . The pre-1.11 naming scheme is now restored. Unfortunately, it necessarily requires an update to Orac ...
https://man.plustar.jp/django/releases/1.11.5.html - [similar]
Django 1.7.7 release notes — Django 4.0.6 ドキュメント 3790
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rating system vendors have also backported the fix for the Python bug into their packages of earlier vers ... of a strip_tags() call without escaping it first, for example with escape() . Mitigated possible XSS att ... e user to an "on success" URL. The security checks for these redirects (namely django.utils.http.is_safe_ ... ubclass would cause incorrect state to be recorded for objects that referenced the superclass ( #24354 ). ...
https://man.plustar.jp/django/releases/1.7.7.html - [similar]
Django のリリースプロセス — Django 4.0.6 ドキュメント 3773
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mpatibility shims will be removed. It's not a pure form of SemVer as each feature release will continue t ... ccommodate our policy of keeping deprecation shims for at least two feature releases. Read on to the next ... section for an example. 非推奨のポリシー ¶ 新しいフィーチャーリ ... xes will be backported to the last feature release for bugs that would have prevented a release in the fi ...
https://man.plustar.jp/django/internals/release-process.html - [similar]
External packages — Django 4.0.6 ドキュメント 3773
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... al tools that solve common problems ( contrib.* ). For easier maintenance and to trim the size of the cod ... ¶ django-localflavor is a collection of utilities for particular countries and cultures. GitHub Document ... to attach comments to any model, so you can use it for comments on blog entries, photos, book chapters, o ... ted product like Disqus. GitHub Documentation PyPI Formtools ¶ django-formtools is a collection of assort ...
https://man.plustar.jp/django/topics/external-packages.html - [similar]
ビューを記述する — Django 4.0.6 ドキュメント 3773
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... next » ビューを記述する ¶ A view function, or view for short, is a Python function that takes a web reque ... e's no other requirement--no "magic," so to speak. For the sake of putting the code somewhere , the conve ... 照してください。 エラーを返す ¶ Django provides help for returning HTTP error codes. There are subclasses o ... f HttpResponse for a number of common HTTP status codes other than 20 ...
https://man.plustar.jp/django/topics/http/views.html - [similar]
django.core.paginator — Django 4.0.6 ドキュメント 3757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ge = allow_empty_first_page def __iter__ ( self ): for page_number in self . page_range : yield self . pa ... ef page ( self , number ): """Return a Page object for the given 1-based page number.""" number = self . ... ange ( self ): """ Return a 1-based range of pages for iterating through within a template for loop. """ ... getattr ( self . object_list , "ordered" , None ) if ordered is not None and not ordered : obj_list_repr ...
https://man.plustar.jp/django/_modules/django/core/paginator.html - [similar]