検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 481 for To (0.109 sec.)
Advice for new contributors — Django 4.0.6 ドキュメント 5019
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es « previous | up | next » Advice for new contributors ¶ New contributor and not sure what to do? Want ... to help but just don't know how to get started? This is the section for you. Get up a ... nd running! If you are new to contributing to Django, the Django への初めてのパッ ... チを書く tutorial will give you an introduction to the tools and ...
https://man.plustar.jp/django/internals/contributing/new-contributors.html - [similar]
Django 1.5.6 release notes — Django 4.0.6 ドキュメント 5019
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mapping of regex patterns (representing the URLs) to callable views, and Django's own processing consis ... of matching a requested URL against those patterns to determine the appropriate view to invoke. Django a ... encouraged for application developers, as the output of reverse() is always based on the current URL pat ... terns, meaning developers do not need to change other code when making changes to URLs. One ...
https://man.plustar.jp/django/releases/1.5.6.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 5003
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts | Index | Modules « previous | up | next » How to create custom model fields ¶ はじめに ¶ model refe ... タイプのみです。 地理的なポリゴンや、 PostgreSQL custom types`_などのユーザー作成タイプなど、より不明瞭な ... nning your Field subclass, first give some thought to which existing Field class your new field is most ... similar to. Can you subclass an existing Django field and sav ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 5003
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r ¶ A "related manager" is a manager used in a one-to-many or many-to-many related context. This happens ... n the manager blog.entry_set . Both sides of a ManyToManyField relation: class Topping ( models . Model ... ): # ... pass class Pizza ( models . Model ): toppings = models . ManyToManyField ( Topping ) In th ... ample, the methods below will be available both on topping.pizza_set and on pizza.toppings . add ( * obj ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
Django 1.6.3 release notes — Django 4.0.6 ドキュメント 5003
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mapping of regex patterns (representing the URLs) to callable views, and Django's own processing consis ... of matching a requested URL against those patterns to determine the appropriate view to invoke. Django a ... encouraged for application developers, as the output of reverse() is always based on the current URL pat ... terns, meaning developers do not need to change other code when making changes to URLs. One ...
https://man.plustar.jp/django/releases/1.6.3.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mes with a high-level sitemap-generating framework to create sitemap XML files. オーバービュー ¶ A sitem ... and how "important" certain pages are in relation to other pages on your site. This information helps s ... es index your site. The Django sitemap framework automates the creation of this XML file by letting you ... t works much like Django's syndication framework . To create a sitemap, write a Sitemap class and point ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
パフォーマンスと最適化 — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... an improvement in a program's speed might cause it to use more memory. Even worse, it can be self-defeat ... ovement is so memory-hungry that the system starts to run out of memory, you'll have done more harm than ... good. There are other trade-offs to bear in mind. Your own time is a valuable resource ... precious than CPU time. Some improvements might be too difficult to be worth implementing, or might affe ...
https://man.plustar.jp/django/topics/performance.html - [similar]
テンプレート — Django 4.0.6 ドキュメント 4978
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... from third-parties. You can also write your own custom backend, see Custom template backend Django は、バ ... をご覧ください。 A Django template is a text document or a Python string marked-up using the Django templ ... context, which is a dict-like object mapping keys to values. Variables are surrounded by {{ and }} like ... } . My last name is {{ last_name }} . With a context of {'first_name': 'John', 'last_name': 'Doe'} , thi ...
https://man.plustar.jp/django/topics/templates.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 4962
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d have models, etc. (which would require adding it to INSTALLED_APPS ). アプリケーションを設定する ¶ アプ ... さい。 When INSTALLED_APPS contains the dotted path to an application module, by default, if Django finds ... avior may be disabled by setting AppConfig.default to False . apps.py モジュールに複数の AppConfig のサブ ... tively, INSTALLED_APPS may contain the dotted path to a configuration class to specify it explicitly: IN ...
https://man.plustar.jp/django/ref/applications.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 4946
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as some backwards incompatible changes you'll want to be aware of when upgrading from Django 2.0 or earl ... . 既存のプロジェクトをアップデートするときは、 How to upgrade Django to a newer version ガイドに従ってく ... されます。 This allows giving users read-only access to models in the admin. ModelAdmin.has_view_permissio ... is backwards compatible in that there isn't a need to assign the "view" permission to allow users who ha ...
https://man.plustar.jp/django/releases/2.1.html - [similar]