検索

phrase: max: clip:
target: order:
Results of 221 - 230 of about 359 for from (0.488 sec.)
How to create PDF files — Django 4.0.6 ドキュメント 3916
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... objects. Here's a "Hello World" example: import io from django.http import FileResponse from reportlab.pdf ... omparison of packages that help generate PDF files from Django. 目次 How to create PDF files ReportLab をイ ...
https://man.plustar.jp/django/howto/outputting-pdf.html - [similar]
Database migration operations — Django 4.0.6 ドキュメント 3916
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... operations ¶ All of these operations are available from the django.contrib.postgres.operations module. Cre ... n with the HStoreExtension operation. For example: from django.contrib.postgres.operations import HStoreEx ... create a collation for German phone book ordering: from django.contrib.postgres.operations import CreateCo ...
https://man.plustar.jp/django/ref/contrib/postgres/operations.html - [similar]
Django 1.9.3 リリースノート — Django 4.0.6 ドキュメント 3916
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and puts such a URL into a link, they could suffer from an XSS attack. CVE-2016-2513: User enumeration thr ... sword hashes in your database (such as SHA1 hashes from users who haven't logged in since the default hash ... ( #26280 ). Prevented ContentTypeManager instances from sharing their cache ( #26286 ). Reverted a change ...
https://man.plustar.jp/django/releases/1.9.3.html - [similar]
条件付きビュー — Django 4.0.6 ドキュメント 3916
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ). For each page (response) that Django sends back from a view, it might provide two HTTP headers: the ETa ... representing a small blog system: import datetime from django.db import models class Blog ( models . Mode ... ion of an unchanged page for your front page view: from django.views.decorators.http import condition @con ... to all views in your project. It doesn't save you from generating the response, which may be expensive. こ ...
https://man.plustar.jp/django/topics/conditional-view-processing.html - [similar]
Writing documentation — Django 4.0.6 ドキュメント 3881
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to our docs, get the development version of Django from the source code repository (see Installing the dev ... install Sphinx ...\> py -m pip install Sphinx Then from the docs directory, build the HTML:   $ make htm ... ne will show: $ python manage.py shell (No changes from what .. code-block:: console would have rendered). ... need to install sphinxcontrib-spelling first. Then from the docs directory, run make spelling . Wrong word ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
Constraints reference — Django 4.0.6 ドキュメント 3881
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango.db.models . The standard convention is to use from django.db import models and refer to the constrain ... le.DEFERRED or Deferrable.IMMEDIATE . For example: from django.db.models import Deferrable , UniqueConstra ... lso selecting full_name , while fetching data only from the index. include is supported only on PostgreSQL ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
多対多 (many-to-many) 関係 — Django 4.0.6 ドキュメント 3881
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s, and a Publication has multiple Article objects: from django.db import models class Publication ( models ... <Publication: Science News>]> Removing Publication from an Article : >>> a4 . publications . remove ( p2 ) ... > >>> a4 . publications . all () <QuerySet []> And from the other end: >>> p2 . article_set . remove ( a5 ... ticle_set . all () <QuerySet []> And you can clear from the other end: >>> p2 . article_set . add ( a4 , a ...
https://man.plustar.jp/django/topics/db/examples/many_to_many.html - [similar]
索引 — Django 4.0.6 ドキュメント 3854
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メソッド) deconstruct() (Field のメソッド) decorator_from_middleware() (django.utils.decorators モジュール) ... decorator_from_middleware_with_args() (django.utils.decorators モ ... ILTER setting DEFAULT_FILE_STORAGE setting DEFAULT_FROM_EMAIL setting default_if_none template filter DEFA ... ラス) Feed (django.contrib.gis.feeds のクラス) FetchFromCacheMiddleware (django.middleware.cache のクラス) ...
https://man.plustar.jp/django/genindex.html - [similar]
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 3854
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s by adding the following snippet to your urls.py: from django.conf import settings from django.conf.urls. ... dding the following snippet to your ROOT_URLCONF : from django.conf import settings from django.conf.urls. ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
GeoJSON Serializer — Django 4.0.6 ドキュメント 3854
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y, as it works with all other serializers. 実装例: from django.core.serializers import serialize from my_a ...
https://man.plustar.jp/django/ref/contrib/gis/serializers.html - [similar]