検索

phrase: max: clip:
target: order:
Results of 291 - 300 of about 312 for use (0.121 sec.)
ページネーション — Django 4.0.6 ドキュメント 3863
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... class ¶ Under the hood, all methods of pagination use the Paginator class. It does all the heavy lifting ... inator and page_obj to the context . To allow your users to navigate between pages, add links to the next ...
https://man.plustar.jp/django/topics/pagination.html - [similar]
django.core.paginator — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... キュメント] class Paginator : # Translators: String used to replace omitted page numbers in elided page # ... urn an instance of a single page. This hook can be used by subclasses to use an alternative to the standa ... d (hits). """ # Special case for the last page because there can be orphans. if self . number == self . p ...
https://man.plustar.jp/django/_modules/django/core/paginator.html - [similar]
How to create CSV output — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n data and displays a line of CSV for each row. It uses the addslashes template filter to ensure there ar ... スのフォーマット 前のトピックへ How to configure and use logging 次のトピックへ How to create PDF files 関連 ...
https://man.plustar.jp/django/howto/outputting-csv.html - [similar]
Djangoソースコードレポジトリ — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 。 大局的な概要 ¶ The Django source code repository uses Git to track changes to the code over time, so yo ... ngo. This is where most development activity is focused. stable/A.B.x are the branches where release prep ... aration work happens. They are also used for bugfix and security releases which occur as n ... erate and submit a patch. Stable branches ¶ Django uses branches to prepare for releases of Django. Each ...
https://man.plustar.jp/django/internals/git.html - [similar]
Django のセキュリティポリシー — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nd this public key is available from most commonly-used keyservers. サポートバージョン ¶ At any given tim ... uch, our notification list is not simply a list of users of Django, and being a user of Django is not suf ... t and/or most likely to be severely impacted known users or distributors of Django, and will require a de ... st by emailing security@djangoproject.com . Please use the subject line "Security notification request". ...
https://man.plustar.jp/django/internals/security.html - [similar]
Single object mixins — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ject_name ¶ Designates the name of the variable to use in the context. query_pk_and_slug ¶ True の場合、 ... ining a list of all objects in the application. If users with access to individual objects should be prev ... 変数より優先されます。例えば、ビューが model 属性を User にセットする場合、 user のデフォルトのオブジェクト ... django.contrib.auth.context_processors.auth からの user 変数をオーバーライドします。衝突を避けるには get_ ...
https://man.plustar.jp/django/ref/class-based-views/mixins-single-object.html - [similar]
PostgreSQL specific aggregation functions — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... aren't any matching rows. Usage examples ¶ We will use this example table: | FIELD1 | FIELD2 | FIELD3 | | ...
https://man.plustar.jp/django/ref/contrib/postgres/aggregates.html - [similar]
Django の例外 — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ース] ¶ This exception is raised when attempting to use models before the app loading process , which init ... ts won't encounter this exception, but it might be useful for implementing custom lookups and expressions ... The SuspiciousOperation exception is raised when a user has performed an operation that should be conside ... 合に、 django.urls によって発生します。 MiddlewareNotUsed ¶ exception MiddlewareNotUsed [ソース] ¶ Middlewa ...
https://man.plustar.jp/django/ref/exceptions.html - [similar]
SchemaEditor — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... chema_editor . delete_model ( MyModel ) It must be used via the context manager as this allows it to mana ... ong as your database is relatively standard in its use of SQL and relational design, you should be able t ... at allows capture of the SQL to a .sql file if the user wishes. create_model() ¶ BaseDatabaseSchemaEditor ... constraints, foreign key constraints, or indexes caused by that field. If the field is a ManyToManyField ...
https://man.plustar.jp/django/ref/schema-editor.html - [similar]
多対多 (many-to-many) 関係 — Django 4.0.6 ドキュメント 3825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... any) 関係 ¶ To define a many-to-many relationship, use ManyToManyField . In this example, an Article can ... "id" before this many-to-many relationship can be used. Save it! >>> a1 . save () Associate the Article ... Publications : >>> a2 = Article ( headline = 'NASA uses Python' ) >>> a2 . save () >>> a2 . publications ... 2 . article_set . all () <QuerySet [<Article: NASA uses Python>]> >>> p1 . article_set . all () <QuerySet ...
https://man.plustar.jp/django/topics/db/examples/many_to_many.html - [similar]