検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 90 for templates (0.025 sec.)
The form rendering API — Django 4.0.6 ドキュメント 14055
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... applications typically shouldn't override built-in templates because they might conflict with a project's custo ... m templates.) The low-level render API ¶ The rendering of form ... templates is controlled by a customizable renderer class. A ... ing. It defaults to ' django.forms.renderers.DjangoTemplates ' . You can also provide a custom renderer by sett ...
https://man.plustar.jp/django/ref/forms/renderers.html - [similar]
How to override templates — Django 4.0.6 ドキュメント 12561
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Modules « previous | up | next » How to override templates ¶ プロジェクトでは、 django.contrib.admin のような ... うなことをしたい場合は、 Overriding built-in widget templates を読んでください。 Overriding from the project's t ... 検討します。 Let's say you're trying to override the templates for a third-party application called blog , which ... provides the templates blog/post.html and blog/list.html . The relevant s ...
https://man.plustar.jp/django/howto/overriding-templates.html - [similar]
The Django template language: for Python programmers — Django 4.0.6 ドキュメン... 12001
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on programmers ¶ This document explains the Django template system from a technical perspective -- how it works ... Template Language . It assumes an understanding of templates, contexts, variables, tags, and rendering. Start w ... ar with these concepts. オーバービュー ¶ Using the template system in Python is a three-step process: You confi ... nostic APIs for each of these steps instead of the template system's lower level APIs: For each DjangoTemplates ...
https://man.plustar.jp/django/ref/templates/api.html - [similar]
テンプレート — Django 4.0.6 ドキュメント 10507
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... al template engines (or even zero if you don't use templates). Django ships built-in backends for its own templ ... ist.0 }} If a variable resolves to a callable, the template system will call it with no arguments and use its r ... late.Engine encapsulates an instance of the Django template system. The main reason for instantiating an Engine ... ngo project. django.template.backends.django.DjangoTemplates is a thin wrapper adapting django.template.Engine ...
https://man.plustar.jp/django/topics/templates.html - [similar]
フォーム — Django 4.0.6 ドキュメント 8787
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mplate form renderers Context available in formset templates Context available in form templates Context availa ... ble in widget templates Overriding built-in formset templates Overriding b ... uilt-in form templates Overriding built-in widget templates ウィジェット ... ックへ フォーム API 関連キーワード フォーム , form , templates , データ , built , factory , formset , Context , ト ...
https://man.plustar.jp/django/ref/forms/index.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 7760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to your INSTALLED_APPS setting. Configure a DjangoTemplates backend in your TEMPLATES setting with django.temp ... カスタムテンプレートのオプション ¶ Overriding admin templates セクションでは、デフォルトの admin テンプレートをオ ... on for more specific information. Overriding admin templates ¶ You can override many of the templates which the ... n admin site. You can even override a few of these templates for a specific app, or a specific model. Set up yo ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
テンプレート — Django 4.0.6 ドキュメント 7760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... separation of application and presentation logic. Templates can be maintained by anyone with an understanding ... ing a context Playing with Context objects Loading templates Custom loaders Template origin 参考 For informatio ... mplate tags and filters . To learn how to override templates in other Django applications, see How to override ...
https://man.plustar.jp/django/ref/templates/index.html - [similar]
はじめての Django アプリ作成、その 3 — Django 4.0.6 ドキュメント 7614
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 分離しましょう。 最初に、 polls ディレクトリの中に、 templates ディレクトリを作成します。 Django はそこからテンプ ... レートを探します。 プロジェクトの TEMPLATES には、Django がどのようにテンプレートをロードしレン ... 書かれています。デフォルトの設定ファイルでは、 DjangoTemplates バックエンドが設定されており、その APP_DIRS のオプ ... ションが True になっています。規約により、 DjangoTemplates は INSTALLED_APPS のそれぞれの "templates" サブディ ...
https://man.plustar.jp/django/intro/tutorial03.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 7614
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in Django 1.6 ¶ Simplified default project and app templates ¶ The default templates used by startproject and s ... nd the database defaults to SQLite. If the default templates don't suit your tastes, you can use custom project ... and app templates . Improved transaction management ¶ Django's trans ... ation ) can now pass extra context through to feed templates using a new Feed.get_context_data() callback. The ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
はじめての Django アプリ作成、その 7 — Django 4.0.6 ドキュメント 7147
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... います。 プロジェクト テンプレートをカスタムする。 ¶ templates ディレクトリをプロジェクトディレクトリ ( manage.py ... う。 設定ファイル ( mysite/settings.py ) を開いて、 TEMPLATES 設定オプションの中に、次のように DIRS オプションを ... 追加します。 mysite/settings.py ¶ TEMPLATES = [ { 'BACKEND' : 'django.template.backends.django ... .DjangoTemplates' , 'DIRS' : [ BASE_DIR / 'templates' ], 'APP_DIRS' ...
https://man.plustar.jp/django/intro/tutorial07.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT