検索

phrase: max: clip:
target: order:
Results of 241 - 250 of about 257 for all (0.098 sec.)
URL ディスパッチャ — Django 4.0.6 ドキュメント 4164
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e of the URL patterns matches, Django imports and calls the given view, which is a Python function (or a ... URL, use angle brackets. Captured values can optionally include a converter type. For example, use <int:n ... d match the third entry in the list. Django would call the function views.month_archive(request, year=200 ... nsert special cases like this. Here, Django would call the function views.special_case_2003(request) /art ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
タイムゾーン — Django 4.0.6 ドキュメント 4164
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on 3.9. The backports.zoneinfo package is automatically installed alongside Django if you are using Pytho ... eliably for time zones with DST. Using UTC is generally safe; if you're using other time zones, you shoul ... ponse ): self . get_response = get_response def __call__ ( self , request ): tzname = request . session . ... es that don't exist or are ambiguous because they fall in a DST transition will be reported as invalid va ...
https://man.plustar.jp/django/topics/i18n/timezones.html - [similar]
Django のインストール方法 — Django 4.0.6 ドキュメント 4164
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ight for your setup. Make sure you have Apache installed with the mod_wsgi module activated. Django will ... 式にサポートされています。 If you are developing a small project or something you don't plan to deploy in a ... production environment, SQLite is generally the best option as it doesn't require running a s ... use Django's manage.py migrate command to automatically create database tables for your models (after fir ...
https://man.plustar.jp/django/topics/install.html - [similar]
django.core.mail.message — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... msg def recipients ( self ): """ Return a list of all recipients of the email (includes direct addressee ... mimetype suggests the file is text but it's # actually binary, read() raises a UnicodeDecodeError. mimet ...
https://man.plustar.jp/django/_modules/django/core/mail/message.html - [similar]
django.utils.functional — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or ( "Cannot use cached_property instance without calling " "__set_name__() on it." ) def __init__ ( self ... def __get__ ( self , instance , cls = None ): """ Call the function and put the return value in instance. ... the instance returns the cached value instead of calling cached_property.__get__(). """ if instance is N ... def lazy ( func , * resultclasses ): """ Turn any callable into a lazy evaluated callable. result classes ...
https://man.plustar.jp/django/_modules/django/utils/functional.html - [similar]
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ django.contrib.staticfiles が設定ファイルの INSTALLED_APPS に含まれていることを確認してください。 設定 ... ing another my_app subdirectory), but it would actually be a bad idea. Django will use the first static f ... ば runserver は自動的にこの処理を行います。もし INSTALLED_APPS 内に django.contrib.staticfiles が存在しない ... cfiles のように静的ファイルの探索は行いません。 Finally, static files are served via a wrapper at the WSG ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
Django のリリースプロセス — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... support release branches. Documentation fixes generally will be more freely backported to the last releas ... he roadmap produced at the end of phase one, we'll all work very hard to get everything on it done. At th ... nd documentation fixes should be backported. In parallel to this phase, main can receive new features, to ...
https://man.plustar.jp/django/internals/release-process.html - [similar]
Base views — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のフローチャート setup() dispatch() http_method_not_allowed() options() Example views.py : from django.htt ... _initkwargs 属性を持っています。 When the view is called during the request/response cycle, the setup() m ... args attributes, respectively. Then dispatch() is called. setup ( request , * args , ** kwargs ) ¶ Perfor ... dispatch() . If overriding this method, you must call super() . dispatch ( request , * args , ** kwargs ...
https://man.plustar.jp/django/ref/class-based-views/base.html - [similar]
GeoDjango Installation — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... x | Modules « previous | up | next » GeoDjango Installation ¶ オーバービュー ¶ In general, GeoDjango inst ... n requires: Python and Django Spatial database Installing Geospatial libraries Details for each of the re ... quirements and installation instructions are provided in the sections bel ... y packages aren't available for your platform, installation from source may be required. When compiling t ...
https://man.plustar.jp/django/ref/contrib/gis/install/index.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s) -- a wrapper around an uploaded file. You'll usually use one of these methods to access the uploaded c ... . In practice, it's often easiest to use chunks() all the time. Looping over chunks() instead of using r ... you shouldn't trust that the uploaded file is actually this type. You'll still need to validate that the ... rs passed to the content-type header. This is typically provided by services, such as Google App Engine, ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]