検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 359 for from (0.105 sec.)
The syndication feed framework — Django 4.0.6 ドキュメント 5189
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nf . A simple example ¶ This simple example, taken from a hypothetical police beat news site describes a f ... eed of the latest five news items: from django.contrib.syndication.views import Feed from ... django.urls import reverse from policebeat.models import NewsItem class LatestEntr ... of the Feed object in your URLconf . For example: from django.urls import path from myproject.feeds impor ...
https://man.plustar.jp/django/ref/contrib/syndication.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 5162
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... l list of other classes to have this model inherit from; it can contain both class objects as well as stri ... ou want to depend on another model (so you inherit from the historical version). If it's not supplied, it ... defaults to inheriting from the standard models.Model . managers は (マネージャ ... emoveField ( model_name , name ) ¶ Removes a field from a model. Bear in mind that when reversed, this is ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 5136
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he default value of the USE_TZ setting will change from False to True . The default sitemap protocol for s ... built outside the context of a request will change from 'http' to 'https' . The extra_tests argument for D ... ll be removed. The is_dst argument will be removed from: QuerySet.datetimes() django.utils.timezone.make_a ... removed. Support for the context argument of Field.from_db_value() and Expression.convert_value() will be ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 5136
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... models.py 内で定義されているものと見なしています。 from django.db import models from django.urls import re ... django.views.generic.base.View 例 myapp/forms.py : from django import forms class ContactForm ( forms . Fo ... aned_data dictionary pass Example myapp/views.py : from myapp.forms import ContactForm from django.views.g ... 合、値は None になります。 Example myapp/views.py : from django.views.generic.edit import CreateView from m ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
The Django admin documentation generator — Django 4.0.6 ドキュメント 5136
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rator ¶ Django's admindocs app pulls documentation from the docstrings of models, views, template tags, an ... TALLED_APPS and makes that documentation available from the Django admin . オーバービュー ¶ To activate th ... dels appear as hyperlinks. Descriptions are pulled from help_text attributes on fields or from docstrings ... late or templates that are used for that view. 例: from django.shortcuts import render from myapp.models i ...
https://man.plustar.jp/django/ref/contrib/admin/admindocs.html - [similar]
データベース — Django 4.0.6 ドキュメント 5136
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nexpected behavior such as "value too long" errors from your database for data that is valid in Django. Se ... HOST for details. To connect using a service name from the connection service file and a password from th ... uent transaction may attempt to fetch more results from a server-side cursor. In transaction pooling mode, ... g DISABLE_SERVER_SIDE_CURSORS to True . To benefit from server-side cursors in transaction pooling mode, y ...
https://man.plustar.jp/django/ref/databases.html - [similar]
Django's cache framework — Django 4.0.6 ドキュメント 5136
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the web server makes all sorts of calculations -- from database queries to template rendering to business ... site's visitor sees. This is a lot more expensive, from a processing-overhead perspective, than your stand ... CacheMiddleware' and 'django.middleware.cache.FetchFromCacheMiddleware' to your MIDDLEWARE setting, as in ... .CommonMiddleware' , 'django.middleware.cache.FetchFromCacheMiddleware' , ] 注釈 No, that's not a typo: th ...
https://man.plustar.jp/django/topics/cache.html - [similar]
LayerMapping data import utility — Django 4.0.6 ドキュメント 5100
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... apefile, test_poly.shp , with three features): >>> from django.contrib.gis.gdal import DataSource >>> ds = ... sponding Django model (make sure to use migrate ): from django.contrib.gis.db import models class TestGeo ... l the features and place them in the database: >>> from django.contrib.gis.utils import LayerMapping >>> f ... ere, LayerMapping transformed the three geometries from the shapefile in their original spatial reference ...
https://man.plustar.jp/django/ref/contrib/gis/layermapping.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 5100
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... en Source project. Django's received contributions from hundreds of developers, been translated into fifty ... 2005, the initial released version of Django came from an internal repository at revision number 8825. Dj ... 1.0 has a number of backwards-incompatible changes from Django 0.96. If you have apps written against Djan ... see our detailed porting guide: Porting your apps from Django 0.96 to 1.0 A complete list of backwards-in ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
Coding style — Django 4.0.6 ドキュメント 5073
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = 5.1.0" ...\> isort . This runs isort recursively from your current directory, modifying any files that d ... le name. Place all import module statements before from module import objects in each section. Use absolut ... only): django/contrib/admin/example.py ¶ # future from __future__ import unicode_literals # standard libr ... ary import json from itertools import chain # third-party import bcrypt ...
https://man.plustar.jp/django/internals/contributing/writing-code/coding-style.h... - [similar]