検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 312 for use (0.052 sec.)
翻訳 — Django 4.0.6 ドキュメント 6279
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n the fly in each available language, according to users' language preferences. Django の国際化フックはデ ... が発生することを意味します。国際化を使わない場合は、 USE_I18N = False を設定ファイルに記述してください。そう ... が、それは以下の理由からです: Sometimes, you should use gettext_lazy() as the default translation method f ... lation function. The underscore character ( _ ) is used to represent "the previous result" in Python's in ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
How to configure and use logging — Django 4.0.6 ドキュメント 6242
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ules « previous | up | next » How to configure and use logging ¶ 参考 Django logging reference Django log ... place a logging call into it. Don't be tempted to use logging calls in settings.py . The way that Django ... laced in settings.py may not work as expected, because logging will not be set up at that point . To expl ... ore logging, use a view function as suggested in the example below. ...
https://man.plustar.jp/django/howto/logging.html - [similar]
Django オブジェクトのシリアル化 — Django 4.0.6 ドキュメント 6242
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Usually these other formats will be text-based and used for sending Django data over a wire, but it's pos ... from your tables into a serialized form, you could use the dumpdata management command. データのシリアル化 ... ializers. get_serializer ( format ) ¶ You can also use a serializer object directly: XMLSerializer = seri ... yset ) data = xml_serializer . getvalue () This is useful if you want to serialize data directly to a fil ...
https://man.plustar.jp/django/topics/serialization.html - [similar]
GeoDjango Management Commands — Django 4.0.6 ドキュメント 6214
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... using ogrinspect in the tutorial . --blank BLANK ¶ Use a comma separated list of OGR field names to add t ... pply to all applicable fields. --decimal DECIMAL ¶ Use a comma separated list of OGR float fields to gene ... GEOM_NAME ¶ Specifies the model attribute name to use for the geometry field. Defaults to 'geom' . --lay ... ifying which layer in the OGR DataSource source to use. Defaults to 0 (the first layer). May be an intege ...
https://man.plustar.jp/django/ref/contrib/gis/commands.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 6074
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... project and app templates ¶ The default templates used by startproject and startapp have been simplified ... default templates don't suit your tastes, you can use custom project and app templates . Improved transa ... e new runner ( django.test.runner.DiscoverRunner ) uses the test discovery features built into unittest2 ... in UTC. This limitation was lifted in Django 1.6. Use QuerySet.datetimes() to perform time zone aware ag ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
django.core.mail — Django 4.0.6 ドキュメント 5999
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r the sake # of a cleaner namespace. These symbols used to be in # django/core/mail.py before the introdu ... n an instance of it. If backend is None (default), use settings.EMAIL_BACKEND. Both fail_silently and oth ... er keyword arguments are used in the constructor of the backend. """ klass = im ... il , recipient_list , fail_silently = False , auth_user = None , auth_password = None , connection = None ...
https://man.plustar.jp/django/_modules/django/core/mail.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 5999
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ー ¶ Django 1.3 adds a framework that allows you to use a class as a view. This means you can compose a vi ... h a completely generic view base class that can be used as the basis for reusable applications that can b ... on to place static assets in MEDIA_ROOT along with user-uploaded files, and serve them both at MEDIA_URL ... make it easier to keep static files separate from user-uploaded files. Static assets should now go in st ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
How to use Django with Hypercorn — Django 4.0.6 ドキュメント 5971
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Index | Modules « previous | up | next » How to use Django with Hypercorn ¶ Hypercorn is an ASGI serve ... ase read the Hypercorn documentation . 目次 How to use Django with Hypercorn Installing Hypercorn Running ... Django in Hypercorn 前のトピックへ How to use Django with Daphne 次のトピックへ How to use Djang ... o with Uvicorn 関連キーワード Hypercorn , How , use , ASGI , For , トピック , command , project , Inst ...
https://man.plustar.jp/django/howto/deployment/asgi/hypercorn.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 5971
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... values for "no data;" the Django convention is to use the empty string, not NULL . One exception is when ... ります。 Supplying missing values blank=True can be used with fields having null=False , but this will req ... exactly two items (e.g. [(A, B), (A, B) ...] ) to use as choices for this field. If choices are given, t ... keeps all of that information with the class that uses it, and helps reference the choices (e.g, Student ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5934
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... provements. Unicode ユーザー名の公式サポート ¶ The User model in django.contrib.auth originally only acce ... pted ASCII letters and numbers in usernames. Although it wasn't a deliberate choice, Uni ... have always been accepted when using Python 3. The username validator now explicitly accepts Unicode char ... acters by default on Python 3 only. カスタムの user モデルでは、新しい ASCIIUsernameValidator や Unic ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT