検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 159 for How (0.022 sec.)
Djangoソースコードレポジトリ — Django 4.0.6 ドキュメント 6060
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ll want to familiarize yourself with the basics of how Git works. Git's website offers downloads for vari ... covers things like the preferred coding style and how to generate and submit a patch. Stable branches ¶ ... ceives direct maintenance from the Django project. However, that and all other similarly named branches c ... istory, for example if you're trying to understand how some features were designed. Feature-development b ...
https://man.plustar.jp/django/internals/git.html - [similar]
How to write custom lookups — Django 4.0.6 ドキュメント 6002
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » How to write custom lookups ¶ Django には (たとえば ex ... 'exact') をフォールバックとして呼び出します。 目次 How to write custom lookups ルックアップの例 変換の例 ... 変換のいずれを使うかを決定する仕組み 前のトピックへ How to create custom model fields 次のトピックへ How t ... 実装 , filter , lhs , lookup , objects , custom , How , lookups クイック検索 Last update: 2022年6月01日 ...
https://man.plustar.jp/django/howto/custom-lookups.html - [similar]
Triaging tickets — Django 4.0.6 ドキュメント 6002
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s improvement", and leaves a comment telling Alice how the patch could be improved. Alice updates the pul ... some ideas here. Someday/Maybe ¶ This stage isn't shown on the diagram. It's used sparingly to keep track ... e polite and friendly and to offer suggestions for how they could improve this ticket and other tickets i ... and bring the issue to django-developers instead. How can I help with triaging? ¶ The triage process is ...
https://man.plustar.jp/django/internals/contributing/triaging-tickets.html - [similar]
Django 1.1 リリースノート — Django 4.0.6 ドキュメント 6002
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 1.0 should continue to work against 1.1 unchanged. However, we do sometimes make backwards-incompatible c ... observe no differences as a result of this change. However, users on 64-bit platforms may experience some ... n until after the model has been saved. Changes to how model formsets are saved ¶ In Django 1.1, BaseMode ... base table's lifecycle. If you set this to False , however, no database table creating or deletion will b ...
https://man.plustar.jp/django/releases/1.1.html - [similar]
Signals — Django 4.0.6 ドキュメント 6002
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... duplicate signals for more information. Let's see how this works by registering a signal that gets calle ... a list of signals to connect a function to. Here's how you connect with the decorator: from django.core.s ... keyword arguments as you like. For example, here's how sending our pizza_done signal might look: class Pi ... ponse values. send() differs from send_robust() in how exceptions raised by receiver functions are handle ...
https://man.plustar.jp/django/topics/signals.html - [similar]
How to upgrade Django to a newer version — Django 4.0.6 ドキュメント 5945
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... "click", function() { $("section.c-content-unix").show(); $("section.c-content-win").hide(); $(".c-tab-un ... ("click", function() { $("section.c-content-win").show(); $("section.c-content-unix").hide(); $(".c-tab-w ... ontents | Index | Modules « previous | up | next » How to upgrade Django to a newer version ¶ 時には更新作 ... HONWARNINGS environment variable. For example, to show warnings while running tests:   $ python -Wa man ...
https://man.plustar.jp/django/howto/upgrade-version.html - [similar]
コードのコミット — Django 4.0.6 ドキュメント 5945
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... "click", function() { $("section.c-content-unix").show(); $("section.c-content-win").hide(); $(".c-tab-un ... ("click", function() { $("section.c-content-win").show(); $("section.c-content-unix").hide(); $(".c-tab-w ... to the mergers and to anyone interested in knowing how code gets committed into Django. If you're a commu ... nity member who wants to contribute code to Django, look at Working ...
https://man.plustar.jp/django/internals/contributing/committing-code.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 5945
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... EWARE setting. Run the command manage.py migrate . How it works ¶ manage.py migrate creates two tables in ... kMiddleware will not attempt to serve a flat page. How to add, change and delete flatpages ¶ Via the admi ... default, the get_flatpages template tag will only show flatpages that are marked registration_required = ... you hadn't provided a user -- i.e., it will only show you public flatpages. Limiting flatpages by base U ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
The "sites" framework — Django 4.0.6 ドキュメント 5945
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the host name from the request.get_host() method. How you use this is up to you, but Django uses it in a ... te = settings . SITE_ID ) Photo . on_site . all () How did CurrentSiteManager know which field of Photo w ... you can use request.site to get the current site. How Django uses the sites framework ¶ Although it's no ... nd point to its ID in your SITE_ID setting. Here's how Django uses the sites framework: In the redirects ...
https://man.plustar.jp/django/ref/contrib/sites.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 5945
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を含むかどうかチェックすることです) 。まだの場合は、 How Django discovers language preference を参照してくだ ... cluded in the literal. In the examples above, note how we used the name Python variable in both translati ... in the comma so that the filter parsing code knows how to split up the arguments. For example, a German t ... eferred language as a string. Example: en-us . See How Django discovers language preference . get_current ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT