検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 481 for To (0.175 sec.)
Database Functions — Django 4.0.6 ドキュメント 4697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e classes documented below provide a way for users to use functions provided by the underlying database ... ull=True for CharField since this allows the field to have two "empty values", but it's important for th ... put_field ) ¶ Forces the result type of expression to be the one from output_field . Usage example: >>> ... alesce ( * expressions , ** extra ) ¶ Accepts a list of at least two field names or expressions and retu ...
https://man.plustar.jp/django/ref/models/database-functions.html - [similar]
How to deploy with ASGI — Django 4.0.6 ドキュメント 4681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts | Index | Modules « previous | up | next » How to deploy with ASGI ¶ As well as WSGI, Django also su ... , and direct any ASGI-compliant application server to use. Django includes getting-started documentation ... for the following ASGI servers: How to use Django with Daphne How to use Django with Hype ... rcorn How to use Django with Uvicorn application オブジェクト ¶ ...
https://man.plustar.jp/django/howto/deployment/asgi/index.html - [similar]
Django のリリースプロセス — Django 4.0.6 ドキュメント 4681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 3.2 (LTS), という具合です。 SemVer makes it easier to see at a glance how compatible releases are with e ... ach other. It also helps to anticipate when compatibility shims will be remove ... rm of SemVer as each feature release will continue to have a few documented backwards incompatibilities ... 2) will be dropped in a non-dot-zero release (Y.1) to accommodate our policy of keeping deprecation shim ...
https://man.plustar.jp/django/internals/release-process.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 4681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ixins use strftime() format characters. Do not try to use the format characters from the now template ta ... Mixin ¶ class YearMixin ¶ A mixin that can be used to retrieve and provide parsing information for a yea ... r component of a date. メソッドと属性 year_format ¶ The strftim ... e() format to use when parsing the year. By default, this is '%Y ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
mixinを編集する — Django 4.0.6 ドキュメント 4681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tial . get_form_class () ¶ Retrieve the form class to instantiate. By default form_class . get_form ( fo ... ワード引数を構築します。 The initial argument is set to get_initial() . If the request is a POST or PUT , ... by default. get_success_url () ¶ Determine the URL to redirect to when the form is successfully validate ... ss_url by default. form_valid ( form ) ¶ Redirects to get_success_url() . form_invalid ( form ) ¶ Render ...
https://man.plustar.jp/django/ref/class-based-views/mixins-editing.html - [similar]
View decorators — Django 4.0.6 ドキュメント 4665
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ndex | Modules « previous | up | next » View decorators ¶ Django provides several decorators that can be ... applied to views to support various HTTP features. See クラス ... をデコレーションする for how to use these decorators with class-based views. Allow ... ed HTTP methods ¶ The decorators in django.views.decorators.http can be used to r ...
https://man.plustar.jp/django/topics/http/decorators.html - [similar]
Django のショートカット関数 — Django 4.0.6 ドキュメント 4665
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ich returns a TemplateResponse because the constructor of TemplateResponse offers the same level of conv ... render() . Required arguments ¶ request The request object used to generate this response. template_nam ... e The full name of a template to use or sequence of template names. If a sequence i ... ptional arguments ¶ context A dictionary of values to add to the template context. By default, this is a ...
https://man.plustar.jp/django/topics/http/shortcuts.html - [similar]
asgiref.sync — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t asyncio.coroutines import contextvars import functools import inspect import os import sys import thre ... concurrent.futures import Future , ThreadPoolExecutor from typing import Any , Callable , Dict , Option ... al , overload from .current_thread_executor import CurrentThreadExecutor from .local import L ... ocal def _restore_context ( context ): # Check for changes in cont ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
django.db.transaction — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のソースコード from contextlib import ContextDecorator , contextmanager from django.db import ( DEFAULT_ ... urn connections [ using ] [ドキュメント] def get_autocommit ( using = None ): """Get the autocommit stat ... ection.""" return get_connection ( using ) . get_autocommit () [ドキュメント] def set_autocommit ( autoc ... ommit , using = None ): """Set the autocommit status of the connection.""" return get_conn ...
https://man.plustar.jp/django/_modules/django/db/transaction.html - [similar]
How to create PDF files — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts | Index | Modules « previous | up | next » How to create PDF files ¶ This document explains how to o ... ng PDF files dynamically is that you can create customized PDFs for different purposes -- say, for diffe ... tent. For example, Django was used at kusports.com to generate customized, printer-friendly NCAA tournam ... the installation worked. Write your view ¶ The key to generating PDFs dynamically with Django is that th ...
https://man.plustar.jp/django/howto/outputting-pdf.html - [similar]