検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 359 for from (0.110 sec.)
アグリゲーション — Django 4.0.6 ドキュメント 4637
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のオンライン書店の在庫を追跡するために使用されます。 from django.db import models class Author ( models . Mo ... count () 73 # Average price across all books. >>> from django.db.models import Avg >>> Book . objects . a ... __avg' : 34.35 } # Max price across all books. >>> from django.db.models import Max >>> Book . objects . a ... riced book and the average price of all books. >>> from django.db.models import FloatField >>> Book . obje ...
https://man.plustar.jp/django/topics/db/aggregation.html - [similar]
Django 1.11.1 リリースノート — Django 4.0.6 ドキュメント 4602
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... True ( #28058 ). Prevented SessionBase.cycle_key() from losing session data if _session_cache isn't popula ... trs ( #28105 ). Prevented AddIndex and RemoveIndex from mutating model state ( #28043 ). Prevented migrati ... ons from dropping database indexes from Meta.indexes when c ... type of ArrayField(CITextField()) values retrieved from the database ( #28161 ). Fixed QuerySet.prefetch_r ...
https://man.plustar.jp/django/releases/1.11.1.html - [similar]
クエリを作成する — Django 4.0.6 ドキュメント 4602
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... llowing models, which comprise a blog application: from datetime import date from django.db import models ... すると仮定すると、利用例は以下のようになります: >>> from blog.models import Blog >>> b = Blog ( name = 'Bea ... the database (so we can retrieve them below): >>> from blog.models import Blog , Entry >>> entry = Entry ... クトに Author のインスタンス joe を追加します。 >>> from blog.models import Author >>> joe = Author . objec ...
https://man.plustar.jp/django/topics/db/queries.html - [similar]
Django 1.0.2 リリースノート — Django 4.0.6 ドキュメント 4575
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pts used for Django 1.0.1 omitted some directories from the final release package, including one directory ... e release package contains the directories omitted from Django 1.0.1. As such, this release contains all o ... f the fixes and improvements from Django 1.0.1; see the Django 1.0.1 release notes f ... more robust in the face of bad Unicode data coming from the __unicode__ method; rather than raise an excep ...
https://man.plustar.jp/django/releases/1.0.2.html - [similar]
Django 1.11.3 リリースノート — Django 4.0.6 ドキュメント 4548
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... evented Paginator 's unordered object list warning from evaluating a QuerySet ( #28284 ). Fixed the value ... es in the django/forms/widgets/attrs.html template from being localized so that numeric attributes (e.g. m ... mat:'s' filter. Prevented a primary key alteration from adding a foreign key constraint if db_constraint=F ... ession preventing a model field's limit_choices_to from being evaluated when a ModelForm is instantiated ( ...
https://man.plustar.jp/django/releases/1.11.3.html - [similar]
Django の例外 — Django 4.0.6 ドキュメント 4521
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... an operation that should be considered suspicious from a security perspective, such as tampering with a s ... d in a model clashes with a field of the same name from an abstract base class An infinite loop is caused ... by ordering A keyword cannot be parsed from the filter parameters A field cannot be determined ... from a keyword in the query parameters A join is not pe ...
https://man.plustar.jp/django/ref/exceptions.html - [similar]
タイムゾーン — Django 4.0.6 ドキュメント 4521
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nfo , which is part of the Python standard library from Python 3.9. The backports.zoneinfo package is auto ... ます。このモードでは、上の例は以下のようになります: from django.utils import timezone now = timezone . now ... UTC で aware な datetimes を扱う必要があります。、 fromtimestamp() を使って、 tz パラメータを utc にセット ... vailable timezones that you can use to build a map from likely locations to time zones. 以下は、セッション ...
https://man.plustar.jp/django/topics/i18n/timezones.html - [similar]
django.contrib.postgres.validators — Django 4.0.6 ドキュメント 4495
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... django.contrib.postgres.validators のソースコード from django.core.exceptions import ValidationError from ... dator , MinLengthValidator , MinValueValidator , ) from django.utils.deconstruct import deconstructible fr ... django.utils.translation import gettext_lazy as _ from django.utils.translation import ngettext_lazy clas ...
https://man.plustar.jp/django/_modules/django/contrib/postgres/validators.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 4495
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... will prevent Django commands (such as runserver ) from running at all. Minor problems are reported to the ... . The following is an example stub check function: from django.core.checks import Error , register @regist ... purposes. The concept is very similar to messages from the message framework or the logging framework . M ... tibility check, you would make the following call: from django.core.checks import register , Tags @registe ...
https://man.plustar.jp/django/topics/checks.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 4468
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... リは apps と呼ばれ、 django.apps :: にあります。 >>> from django.apps import apps >>> apps . get_app_config ... 前をつけることになるでしょう: # rock_n_roll/apps.py from django.apps import AppConfig class RockNRollConfig ... is to import the registry under a different name: from django.apps import apps as django_apps Changed in ... 場合は設定を以下のようにします。 # anthology/apps.py from rock_n_roll.apps import RockNRollConfig class Jazz ...
https://man.plustar.jp/django/ref/applications.html - [similar]