検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 108 for format (0.024 sec.)
設定 — Django 4.0.6 ドキュメント 11814
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... signature. See the cache documentation for more information. KEY_PREFIX ¶ デフォルト値: '' (空文字列) A str ... ngo server. See the cache documentation for more information. LOCATION ¶ デフォルト値: '' (空文字列) The loc ... eters vary depending on your cache backend. Some information on available parameters can be found in the cac ... he arguments documentation. For more information, consult your backend module's own documentatio ...
https://man.plustar.jp/django/ref/settings.html - [similar]
クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 11278
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... () ] template_name_suffix year [ get_year() ] year_format [ get_year_format() ] メソッド as_view() dispatch( ... ttp_method_names model month [ get_month() ] month_format [ get_month_format() ] ordering [ get_ordering() ] ... () ] template_name_suffix year [ get_year() ] year_format [ get_year_format() ] メソッド as_view() dispatch( ... () ] template_name_suffix week [ get_week() ] week_format [ get_week_format() ] year [ get_year() ] year_for ...
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 11188
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... up | next » Date-based mixins ¶ 注釈 All the date formatting attributes in these mixins use strftime() form ... at characters. Do not try to use the format characters from the now template tag as they are n ... that can be used to retrieve and provide parsing information for a year component of a date. メソッドと属性 ... year_format ¶ The strftime() format to use when parsing the ye ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 10410
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... brary () @register . simple_tag def current_time ( format_string ): return datetime . datetime . now () . st ... rftime ( format_string ) simple_tag ヘルパー関数について、注意すべ ... bilities. For building small HTML snippets, use of format_html() instead of mark_safe() is strongly recommen ... akes_context = True ) def current_time ( context , format_string ): timezone = context [ 'timezone' ] return ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 9236
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dels.User . See the authentication docs for more information. Permissions for anonymous users ¶ If you provi ... tion framework has been expanded with locale-aware formatting and form processing. That means, if enabled, d ... d numbers on templates will be displayed using the format specified for the current locale. Django will also ... use localized formats when parsing data in forms. See 表示形式のローカル ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 8905
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tions to do that header-patching themselves. For information on the Vary header, see RFC 7231#section-7.1.4 ... er by adding all keyword arguments to it. The transformation is as follows: All keyword parameter names are ... perties: They accept strings in ISO 8601 date/time formats (or some close alternatives) and return objects f ... dule. They raise ValueError if their input is well formatted but isn't a valid date or time. They return Non ...
https://man.plustar.jp/django/ref/utils.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 8611
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... oder ) . translate ( _json_script_escapes ) return format_html ( '<script id=" {} " type="application/json"> ... ) else : return escape ( text ) [ドキュメント] def format_html ( format_string , * args , ** kwargs ): """ S ... imilar to str.format, but pass all arguments through conditional_escape ... esult. This function should be used instead of str.format or % interpolation to build up small HTML fragment ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
Django 1.7.11 release notes — Django 4.0.6 ドキュメント 8560
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... application allows users to specify an unvalidated format for dates and passes this format to the date filte ... r, e.g. {{ last_updated|date:user_date_format }} , then a malicious user could obtain any secret ... ngs by specifying a settings key instead of a date format. e.g. "SECRET_KEY" instead of "j/m/Y" . To remedy ... ion used by the date template filter, django.utils.formats.get_format() , now only allows accessing the date ...
https://man.plustar.jp/django/releases/1.7.11.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 8420
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es を実行すると、以下のエラーが発生するでしょう: a format specification for argument 'name' , as in 'msgstr[ ... ValidationError ( self . error_message % number ) Formatting strings: format_lazy() ¶ Python's str.format() ... method will not work when either the format_string or any of the arguments to str.format() con ... on objects. Instead, you can use django.utils.text.format_lazy() , which creates a lazy object that runs the ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
Django 1.11.19 リリースノート — Django 4.0.6 ドキュメント 8126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 2019-6975: Memory exhaustion in django.utils.numberformat.format() ¶ If django.utils.numberformat.format() - ... - used by contrib.admin as well as the floatformat , filesizeformat , and intcomma templates filters ... o significant memory usage due to a call to '{:f}'.format() . To avoid this, decimals with more than 200 dig ... its are now formatted using scientific notation. 目次 Django 1.11.19 ...
https://man.plustar.jp/django/releases/1.11.19.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT