---
title: "Django ドキュメント目次"
version: 3.2
locale: ja
source: https://docs.djangoproject.com/ja/3.2/contents/
canonical: https://djangodocs.dev/ja/3.2/contents/
---
# Django ドキュメント目次

- [さぁ始めましょう](/ja/3.2/intro/)

  - [Django の概要](/ja/3.2/intro/overview/)

    - [モデルの設計](/ja/3.2/intro/overview/#design-your-model)
    - [モデルのインストール](/ja/3.2/intro/overview/#install-it)
    - [自動生成される API で楽しむ](/ja/3.2/intro/overview/#enjoy-the-free-api)
    - [作業場 (scaffold) ではなく完成品 (whole house) の、動的な admin インタフェース](/ja/3.2/intro/overview/#a-dynamic-admin-interface-it-s-not-just-scaffolding-it-s-the-whole-house)
    - [URL を設計する](/ja/3.2/intro/overview/#design-your-urls)
    - [ビューの自作](/ja/3.2/intro/overview/#write-your-views)
    - [テンプレートを設計する](/ja/3.2/intro/overview/#design-your-templates)
    - [これらはほんの一部にすぎません](/ja/3.2/intro/overview/#this-is-just-the-surface)
  - [クイックインストールガイド](/ja/3.2/intro/install/)

    - [Python をインストールする](/ja/3.2/intro/install/#install-python)
    - [データベースを設定する](/ja/3.2/intro/install/#set-up-a-database)
    - [Django をインストールする](/ja/3.2/intro/install/#install-django)
    - [動作確認](/ja/3.2/intro/install/#verifying)
    - [これだけです!](/ja/3.2/intro/install/#that-s-it)
  - [はじめての Django アプリ作成、その 1](/ja/3.2/intro/tutorial01/)

    - [プロジェクトを作成する](/ja/3.2/intro/tutorial01/#creating-a-project)
    - [開発用サーバー](/ja/3.2/intro/tutorial01/#the-development-server)
    - [Polls アプリケーションをつくる](/ja/3.2/intro/tutorial01/#creating-the-polls-app)
    - [はじめてのビュー作成](/ja/3.2/intro/tutorial01/#write-your-first-view)
  - [はじめての Django アプリ作成、その2](/ja/3.2/intro/tutorial02/)

    - [Database の設定](/ja/3.2/intro/tutorial02/#database-setup)
    - [モデルの作成](/ja/3.2/intro/tutorial02/#creating-models)
    - [モデルを有効にする](/ja/3.2/intro/tutorial02/#activating-models)
    - [API で遊んでみる](/ja/3.2/intro/tutorial02/#playing-with-the-api)
    - [Django Adminの紹介](/ja/3.2/intro/tutorial02/#introducing-the-django-admin)
  - [はじめての Django アプリ作成、その 3](/ja/3.2/intro/tutorial03/)

    - [オーバービュー](/ja/3.2/intro/tutorial03/#overview)
    - [もっとビューを書いてみる](/ja/3.2/intro/tutorial03/#writing-more-views)
    - [実際に動作するビューを書く](/ja/3.2/intro/tutorial03/#write-views-that-actually-do-something)
    - [404 エラーの送出](/ja/3.2/intro/tutorial03/#raising-a-404-error)
    - [テンプレートシステムを使う](/ja/3.2/intro/tutorial03/#use-the-template-system)
    - [テンプレート内のハードコードされたURLを削除](/ja/3.2/intro/tutorial03/#removing-hardcoded-urls-in-templates)
    - [URL 名の名前空間](/ja/3.2/intro/tutorial03/#namespacing-url-names)
  - [はじめての Django アプリ作成、その 4](/ja/3.2/intro/tutorial04/)

    - [簡単なフォームを書く](/ja/3.2/intro/tutorial04/#write-a-minimal-form)
    - [汎用ビューを使う: コードが少ないのはいいことだ](/ja/3.2/intro/tutorial04/#use-generic-views-less-code-is-better)
  - [はじめての Django アプリ作成、その 5](/ja/3.2/intro/tutorial05/)

    - [自動テストの導入](/ja/3.2/intro/tutorial05/#introducing-automated-testing)
    - [基本的なテスト方針](/ja/3.2/intro/tutorial05/#basic-testing-strategies)
    - [初めてのテスト作成](/ja/3.2/intro/tutorial05/#writing-our-first-test)
    - [ビューをテストする](/ja/3.2/intro/tutorial05/#test-a-view)
    - [テストにおいて、多いことはいいことだ](/ja/3.2/intro/tutorial05/#when-testing-more-is-better)
    - [さらなるテスト](/ja/3.2/intro/tutorial05/#further-testing)
    - [次は何をしましょうか？](/ja/3.2/intro/tutorial05/#what-s-next)
  - [はじめての Django アプリ作成、その 6](/ja/3.2/intro/tutorial06/)

    - [*アプリ* の構造をカスタマイズする](/ja/3.2/intro/tutorial06/#customize-your-app-s-look-and-feel)
    - [背景画像を追加する](/ja/3.2/intro/tutorial06/#adding-a-background-image)
  - [はじめての Django アプリ作成、その 7](/ja/3.2/intro/tutorial07/)

    - [admin フォームのカスタマイズ](/ja/3.2/intro/tutorial07/#customize-the-admin-form)
    - [リレーションを張ったオブジェクトの追加](/ja/3.2/intro/tutorial07/#adding-related-objects)
    - [管理サイトのチェンジリストページをカスタマイズする](/ja/3.2/intro/tutorial07/#customize-the-admin-change-list)
    - [管理サイトのルック & フィールをカスタマイズする](/ja/3.2/intro/tutorial07/#customize-the-admin-look-and-feel)
    - [admin index ページをカスタムする](/ja/3.2/intro/tutorial07/#customize-the-admin-index-page)
    - [次は何をしましょうか？](/ja/3.2/intro/tutorial07/#what-s-next)
  - [高度なチュートリアル: 再利用可能アプリの書き方](/ja/3.2/intro/reusable-apps/)

    - [再利用性の問題](/ja/3.2/intro/reusable-apps/#reusability-matters)
    - [プロジェクトと再利用可能アプリ](/ja/3.2/intro/reusable-apps/#your-project-and-your-reusable-app)
    - [事前に必要な物をインストールする](/ja/3.2/intro/reusable-apps/#installing-some-prerequisites)
    - [アプリケーションをパッケージングする](/ja/3.2/intro/reusable-apps/#packaging-your-app)
    - [自分のパッケージを使ってみる](/ja/3.2/intro/reusable-apps/#using-your-own-package)
    - [アプリを公開する](/ja/3.2/intro/reusable-apps/#publishing-your-app)
    - [仮想環境でのPythonパッケージのインストール](/ja/3.2/intro/reusable-apps/#installing-python-packages-with-a-virtual-environment)
  - [次のステップへ](/ja/3.2/intro/whatsnext/)

    - [ドキュメントの探し方](/ja/3.2/intro/whatsnext/#finding-documentation)
    - [ドキュメントの構成](/ja/3.2/intro/whatsnext/#how-the-documentation-is-organized)
    - [ドキュメントの更新の方針](/ja/3.2/intro/whatsnext/#how-documentation-is-updated)
    - [ドキュメントの入手](/ja/3.2/intro/whatsnext/#where-to-get-it)
    - [バージョンごとの違い](/ja/3.2/intro/whatsnext/#differences-between-versions)
  - [Django への初めてのパッチを書く](/ja/3.2/intro/contributing/)

    - [はじめに](/ja/3.2/intro/contributing/#introduction)
    - [ソースコードの管理](/ja/3.2/intro/contributing/#code-of-conduct)
    - [Git のインストール](/ja/3.2/intro/contributing/#installing-git)
    - [Django 開発版の複製を取得](/ja/3.2/intro/contributing/#getting-a-copy-of-django-s-development-version)
    - [最初に Django のテストスイートを実行する](/ja/3.2/intro/contributing/#running-django-s-test-suite-for-the-first-time)
    - [取りかかる](/ja/3.2/intro/contributing/#working-on-a-feature)
    - [パッチ用のブランチを作る](/ja/3.2/intro/contributing/#creating-a-branch-for-your-patch)
    - [チケットにテストを書く](/ja/3.2/intro/contributing/#writing-some-tests-for-your-ticket)
    - [チケットにコードを書く](/ja/3.2/intro/contributing/#writing-the-code-for-your-ticket)
    - [Django の テストスイートをもう一度走らせる](/ja/3.2/intro/contributing/#running-django-s-test-suite-for-the-second-time)
    - [ドキュメントを書く](/ja/3.2/intro/contributing/#writing-documentation)
    - [変更点を確認する](/ja/3.2/intro/contributing/#previewing-your-changes)
    - [パッチの変更点をコミットする](/ja/3.2/intro/contributing/#committing-the-changes-in-the-patch)
    - [コミットのプッシュとプルリクエストの作成](/ja/3.2/intro/contributing/#pushing-the-commit-and-making-a-pull-request)
    - [次のステップ](/ja/3.2/intro/contributing/#next-steps)
- [Django を使う](/ja/3.2/topics/)

  - [Django のインストール方法](/ja/3.2/topics/install/)

    - [Python をインストールする](/ja/3.2/topics/install/#install-python)
    - [Apache と `mod_wsgi` のインストール](/ja/3.2/topics/install/#install-apache-and-mod-wsgi)
    - [データベースを動かす](/ja/3.2/topics/install/#get-your-database-running)
    - [Install the Django code](/ja/3.2/topics/install/#install-the-django-code)
  - [モデルとデータベース](/ja/3.2/topics/db/)

    - [モデル](/ja/3.2/topics/db/models/)
    - [クエリを作成する](/ja/3.2/topics/db/queries/)
    - [アグリゲーション](/ja/3.2/topics/db/aggregation/)
    - [検索](/ja/3.2/topics/db/search/)
    - [マネージャ](/ja/3.2/topics/db/managers/)
    - [素の SQL 文の実行](/ja/3.2/topics/db/sql/)
    - [データベースのトランザクション](/ja/3.2/topics/db/transactions/)
    - [複数のデータベース](/ja/3.2/topics/db/multi-db/)
    - [Tablespaces](/ja/3.2/topics/db/tablespaces/)
    - [データベースアクセスの最適化](/ja/3.2/topics/db/optimization/)
    - [Database instrumentation](/ja/3.2/topics/db/instrumentation/)
    - [Examples of model relationship API usage](/ja/3.2/topics/db/examples/)
  - [HTTP リクエストのハンドリング](/ja/3.2/topics/http/)

    - [URL ディスパッチャ](/ja/3.2/topics/http/urls/)
    - [ビューを記述する](/ja/3.2/topics/http/views/)
    - [View decorators](/ja/3.2/topics/http/decorators/)
    - [ファイルのアップロード](/ja/3.2/topics/http/file-uploads/)
    - [Django のショートカット関数](/ja/3.2/topics/http/shortcuts/)
    - [ジェネリックビュー (generic view)](/ja/3.2/topics/http/generic-views/)
    - [ミドルウェア (Middleware)](/ja/3.2/topics/http/middleware/)
    - [セッションの使いかた](/ja/3.2/topics/http/sessions/)
  - [フォームを使う](/ja/3.2/topics/forms/)

    - [HTML フォーム](/ja/3.2/topics/forms/#html-forms)
    - [フォームにおける Django の役割](/ja/3.2/topics/forms/#django-s-role-in-forms)
    - [Django におけるフォーム](/ja/3.2/topics/forms/#forms-in-django)
    - [フォームを作る](/ja/3.2/topics/forms/#building-a-form)
    - [Django の `Form` クラスの詳細](/ja/3.2/topics/forms/#more-about-django-form-classes)
    - [フォームテンプレートを扱う](/ja/3.2/topics/forms/#working-with-form-templates)
    - [その他のトピック](/ja/3.2/topics/forms/#further-topics)
  - [テンプレート](/ja/3.2/topics/templates/)

    - [Django テンプレート言語](/ja/3.2/topics/templates/#the-django-template-language)
    - [テンプレートエンジンのサポート](/ja/3.2/topics/templates/#support-for-template-engines)
  - [クラスベースビュー](/ja/3.2/topics/class-based-views/)

    - [クラスベースビュー入門](/ja/3.2/topics/class-based-views/intro/)
    - [ビルトインのクラスベースのジェネリックビュー](/ja/3.2/topics/class-based-views/generic-display/)
    - [クラスベースのビューでフォームを扱う](/ja/3.2/topics/class-based-views/generic-editing/)
    - [クラスベースのビューでミックスインを使用する](/ja/3.2/topics/class-based-views/mixins/)
    - [基本的な例](/ja/3.2/topics/class-based-views/#basic-examples)
    - [URLconfでの使用法](/ja/3.2/topics/class-based-views/#usage-in-your-urlconf)
    - [ジェネリックビューのサブクラス化](/ja/3.2/topics/class-based-views/#subclassing-generic-views)
  - [マイグレーション](/ja/3.2/topics/migrations/)

    - [コマンド](/ja/3.2/topics/migrations/#the-commands)
    - [対応するバックエンド](/ja/3.2/topics/migrations/#backend-support)
    - [ワークフロー](/ja/3.2/topics/migrations/#workflow)
    - [Transactions](/ja/3.2/topics/migrations/#transactions)
    - [依存関係](/ja/3.2/topics/migrations/#dependencies)
    - [マイグレーションファイル](/ja/3.2/topics/migrations/#migration-files)
    - [アプリにマイグレーションを追加する](/ja/3.2/topics/migrations/#adding-migrations-to-apps)
    - [Reversing migrations](/ja/3.2/topics/migrations/#reversing-migrations)
    - [Historical models](/ja/3.2/topics/migrations/#historical-models)
    - [モデルのフィールドを削除するときに考えるべきこと](/ja/3.2/topics/migrations/#considerations-when-removing-model-fields)
    - [データのマイグレーション](/ja/3.2/topics/migrations/#data-migrations)
    - [Squashing migrations](/ja/3.2/topics/migrations/#squashing-migrations)
    - [値のシリアル化](/ja/3.2/topics/migrations/#serializing-values)
    - [Django の複数のバージョンをサポートする](/ja/3.2/topics/migrations/#supporting-multiple-django-versions)
  - [ファイルの管理](/ja/3.2/topics/files/)

    - [Using files in models](/ja/3.2/topics/files/#using-files-in-models)
    - [`File` オブジェクト](/ja/3.2/topics/files/#the-file-object)
    - [File storage](/ja/3.2/topics/files/#file-storage)
  - [Django におけるテスト](/ja/3.2/topics/testing/)

    - [テストを書いて実行する](/ja/3.2/topics/testing/overview/)
    - [テストツール](/ja/3.2/topics/testing/tools/)
    - [Advanced testing topics](/ja/3.2/topics/testing/advanced/)
  - [Django でのユーザー認証](/ja/3.2/topics/auth/)

    - [概要](/ja/3.2/topics/auth/#overview)
    - [インストール](/ja/3.2/topics/auth/#installation)
    - [使い方](/ja/3.2/topics/auth/#usage)
  - [Django's cache framework](/ja/3.2/topics/cache/)

    - [Setting up the cache](/ja/3.2/topics/cache/#setting-up-the-cache)
    - [The per-site cache](/ja/3.2/topics/cache/#the-per-site-cache)
    - [The per-view cache](/ja/3.2/topics/cache/#the-per-view-cache)
    - [Template fragment caching](/ja/3.2/topics/cache/#template-fragment-caching)
    - [The low-level cache API](/ja/3.2/topics/cache/#the-low-level-cache-api)
    - [Downstream caches](/ja/3.2/topics/cache/#downstream-caches)
    - [Using `Vary` headers](/ja/3.2/topics/cache/#using-vary-headers)
    - [Controlling cache: Using other headers](/ja/3.2/topics/cache/#controlling-cache-using-other-headers)
    - [Order of `MIDDLEWARE`](/ja/3.2/topics/cache/#order-of-middleware)
  - [条件付きビュー](/ja/3.2/topics/conditional-view-processing/)

    - [`condition` デコレータ](/ja/3.2/topics/conditional-view-processing/#the-condition-decorator)
    - [1つの値を計算するだけのショートカット](/ja/3.2/topics/conditional-view-processing/#shortcuts-for-only-computing-one-value)
    - [その他の HTTP メソッドでデコレータを使用する](/ja/3.2/topics/conditional-view-processing/#using-the-decorators-with-other-http-methods)
    - [Comparison with middleware conditional processing](/ja/3.2/topics/conditional-view-processing/#comparison-with-middleware-conditional-processing)
  - [暗号署名](/ja/3.2/topics/signing/)

    - [`SECRET_KEY` を守る](/ja/3.2/topics/signing/#protecting-the-secret-key)
    - [低レベルの API を利用する](/ja/3.2/topics/signing/#using-the-low-level-api)
  - [メールを送信する](/ja/3.2/topics/email/)

    - [簡単な例](/ja/3.2/topics/email/#quick-example)
    - [`send_mail()`](/ja/3.2/topics/email/#send-mail)
    - [`send_mass_mail()`](/ja/3.2/topics/email/#send-mass-mail)
    - [`mail_admins()`](/ja/3.2/topics/email/#mail-admins)
    - [`mail_managers()`](/ja/3.2/topics/email/#mail-managers)
    - [例](/ja/3.2/topics/email/#examples)
    - [ヘッダインジェクションを防止する](/ja/3.2/topics/email/#preventing-header-injection)
    - [`EmailMessage` クラス](/ja/3.2/topics/email/#the-emailmessage-class)
    - [メールのバックエンド](/ja/3.2/topics/email/#email-backends)
    - [開発用にメールを設定する](/ja/3.2/topics/email/#configuring-email-for-development)
  - [国際化とローカル化](/ja/3.2/topics/i18n/)

    - [概要](/ja/3.2/topics/i18n/#overview)
    - [定義](/ja/3.2/topics/i18n/#definitions)
  - [ロギング](/ja/3.2/topics/logging/)

    - [クイックロギング入門](/ja/3.2/topics/logging/#a-quick-logging-primer)
    - [ロギングを使用する](/ja/3.2/topics/logging/#using-logging)
    - [ロギングを設定する](/ja/3.2/topics/logging/#configuring-logging)
    - [Django's logging extensions](/ja/3.2/topics/logging/#django-s-logging-extensions)
    - [Django のデフォルトのロギング設定](/ja/3.2/topics/logging/#django-s-default-logging-configuration)
  - [ページネーション](/ja/3.2/topics/pagination/)

    - [The `Paginator` class](/ja/3.2/topics/pagination/#the-paginator-class)
    - [カスタマイズ例](/ja/3.2/topics/pagination/#example)
    - [Paginating a `ListView`](/ja/3.2/topics/pagination/#paginating-a-listview)
    - [Using `Paginator` in a view function](/ja/3.2/topics/pagination/#using-paginator-in-a-view-function)
  - [Django におけるセキュリティ](/ja/3.2/topics/security/)

    - [クロス・サイト・スクリプティング (XSS) の防御](/ja/3.2/topics/security/#cross-site-scripting-xss-protection)
    - [クロス・サイト・リクエスト・フォージェリ(CSRF)の防御](/ja/3.2/topics/security/#cross-site-request-forgery-csrf-protection)
    - [SQL injectionへの防御](/ja/3.2/topics/security/#sql-injection-protection)
    - [Clickjacking に対する防御](/ja/3.2/topics/security/#clickjacking-protection)
    - [SSL/HTTPS](/ja/3.2/topics/security/#ssl-https)
    - [Host ヘッダーの検証](/ja/3.2/topics/security/#host-header-validation)
    - [Referrer policy](/ja/3.2/topics/security/#referrer-policy)
    - [セッションのセキュリティ](/ja/3.2/topics/security/#session-security)
    - [ユーザーがアップロードしたコンテンツ](/ja/3.2/topics/security/#user-uploaded-content)
    - [Additional security topics](/ja/3.2/topics/security/#additional-security-topics)
  - [パフォーマンスと最適化](/ja/3.2/topics/performance/)

    - [はじめに](/ja/3.2/topics/performance/#introduction)
    - [一般的なアプローチ](/ja/3.2/topics/performance/#general-approaches)
    - [Caching](/ja/3.2/topics/performance/#caching)
    - [遅延について理解する](/ja/3.2/topics/performance/#understanding-laziness)
    - [データベース](/ja/3.2/topics/performance/#databases)
    - [HTTP のパフォーマンス](/ja/3.2/topics/performance/#http-performance)
    - [テンプレートのパフォーマンス](/ja/3.2/topics/performance/#template-performance)
    - [Using different versions of available software](/ja/3.2/topics/performance/#using-different-versions-of-available-software)
  - [Django オブジェクトのシリアル化](/ja/3.2/topics/serialization/)

    - [データのシリアル化](/ja/3.2/topics/serialization/#serializing-data)
    - [データのデシリアライズ](/ja/3.2/topics/serialization/#deserializing-data)
    - [Serialization formats](/ja/3.2/topics/serialization/#serialization-formats)
    - [Natural keys](/ja/3.2/topics/serialization/#natural-keys)
  - [Djangoの設定](/ja/3.2/topics/settings/)

    - [基礎](/ja/3.2/topics/settings/#the-basics)
    - [設定ファイルの指定](/ja/3.2/topics/settings/#designating-the-settings)
    - [デフォルトの設定](/ja/3.2/topics/settings/#default-settings)
    - [Pythonのコード内で設定を参照する](/ja/3.2/topics/settings/#using-settings-in-python-code)
    - [実行時に設定を変更する](/ja/3.2/topics/settings/#altering-settings-at-runtime)
    - [セキュリティ](/ja/3.2/topics/settings/#security)
    - [利用可能な設定](/ja/3.2/topics/settings/#available-settings)
    - [設定項目を自作する](/ja/3.2/topics/settings/#creating-your-own-settings)
    - [Using settings without setting `DJANGO_SETTINGS_MODULE`](/ja/3.2/topics/settings/#using-settings-without-setting-django-settings-module)
  - [Signals](/ja/3.2/topics/signals/)

    - [Listening to signals](/ja/3.2/topics/signals/#listening-to-signals)
    - [Defining and sending signals](/ja/3.2/topics/signals/#defining-and-sending-signals)
    - [Disconnecting signals](/ja/3.2/topics/signals/#disconnecting-signals)
  - [システムチェックフレームワーク](/ja/3.2/topics/checks/)

    - [Writing your own checks](/ja/3.2/topics/checks/#writing-your-own-checks)
  - [External packages](/ja/3.2/topics/external-packages/)

    - [Localflavor](/ja/3.2/topics/external-packages/#localflavor)
    - [コメント](/ja/3.2/topics/external-packages/#comments)
    - [Formtools](/ja/3.2/topics/external-packages/#formtools)
  - [非同期サポート](/ja/3.2/topics/async/)

    - [非同期ビュー](/ja/3.2/topics/async/#async-views)
    - [Async safety](/ja/3.2/topics/async/#async-safety)
    - [Async adapter functions](/ja/3.2/topics/async/#async-adapter-functions)
- [「How-to」ガイド](/ja/3.2/howto/)

  - [`REMOTE_USER` を使用した認証](/ja/3.2/howto/auth-remote-user/)

    - [設定](/ja/3.2/howto/auth-remote-user/#configuration)
    - [ログインページでのみ `REMOTE_USER` を使用する](/ja/3.2/howto/auth-remote-user/#using-remote-user-on-login-pages-only)
  - [カスタム `django-admin` コマンドの実装](/ja/3.2/howto/custom-management-commands/)

    - [省略可能な引数を受け入れる](/ja/3.2/howto/custom-management-commands/#accepting-optional-arguments)
    - [管理コマンドとロケール](/ja/3.2/howto/custom-management-commands/#management-commands-and-locales)
    - [テスト](/ja/3.2/howto/custom-management-commands/#testing)
    - [コマンドのオーバーライド](/ja/3.2/howto/custom-management-commands/#overriding-commands)
    - [Command オブジェクト](/ja/3.2/howto/custom-management-commands/#command-objects)
  - [カスタム model fieldsの実装](/ja/3.2/howto/custom-model-fields/)

    - [はじめに](/ja/3.2/howto/custom-model-fields/#introduction)
    - [背景理論](/ja/3.2/howto/custom-model-fields/#background-theory)
    - [フィールドサブクラスを書く](/ja/3.2/howto/custom-model-fields/#writing-a-field-subclass)
    - [`FileField` サブクラスを書く](/ja/3.2/howto/custom-model-fields/#writing-a-filefield-subclass)
  - [カスタムのルックアップ](/ja/3.2/howto/custom-lookups/)

    - [ルックアップの例](/ja/3.2/howto/custom-lookups/#a-lookup-example)
    - [変換の例](/ja/3.2/howto/custom-lookups/#a-transformer-example)
    - [効率的な `abs__lt` 検索を書く](/ja/3.2/howto/custom-lookups/#writing-an-efficient-abs-lt-lookup)
    - [双方向変換の例](/ja/3.2/howto/custom-lookups/#a-bilateral-transformer-example)
    - [既存の検索向けに代替実装を書く](/ja/3.2/howto/custom-lookups/#writing-alternative-implementations-for-existing-lookups)
    - [Django がルックアップと変換のいずれを使うかを決定する仕組み](/ja/3.2/howto/custom-lookups/#how-django-determines-the-lookups-and-transforms-which-are-used)
  - [テンプレートのバックエンドをカスタマイズする](/ja/3.2/howto/custom-template-backend/)

    - [カスタムのバックエンド](/ja/3.2/howto/custom-template-backend/#custom-backends)
    - [カスタムエンジンに対するデバッグの統合](/ja/3.2/howto/custom-template-backend/#debug-integration-for-custom-engines)
  - [独自のテンプレートタグとフィルタ](/ja/3.2/howto/custom-template-tags/)

    - [コードのレイアウト](/ja/3.2/howto/custom-template-tags/#code-layout)
    - [独自のテンプレートフィルタを記述する](/ja/3.2/howto/custom-template-tags/#writing-custom-template-filters)
    - [独自のテンプレートタグを記述する](/ja/3.2/howto/custom-template-tags/#writing-custom-template-tags)
  - [カスタムストレージシステムの作成](/ja/3.2/howto/custom-file-storage/)
  - [Django をデプロイする](/ja/3.2/howto/deployment/)

    - [WSGI とともにデプロイするには](/ja/3.2/howto/deployment/wsgi/)
    - [How to deploy with ASGI](/ja/3.2/howto/deployment/asgi/)
    - [デプロイチェックリスト](/ja/3.2/howto/deployment/checklist/)
  - [Django の新しいバージョンへの更新](/ja/3.2/howto/upgrade-version/)

    - [更新時に読むべきドキュメント](/ja/3.2/howto/upgrade-version/#required-reading)
    - [依存関係](/ja/3.2/howto/upgrade-version/#dependencies)
    - [廃止予定警告を解決する](/ja/3.2/howto/upgrade-version/#resolving-deprecation-warnings)
    - [インストール](/ja/3.2/howto/upgrade-version/#installation)
    - [テスト](/ja/3.2/howto/upgrade-version/#testing)
    - [デプロイ](/ja/3.2/howto/upgrade-version/#deployment)
  - [エラーのレポート](/ja/3.2/howto/error-reporting/)

    - [E メールのレポート](/ja/3.2/howto/error-reporting/#email-reports)
    - [Filtering error reports](/ja/3.2/howto/error-reporting/#filtering-error-reports)
  - [モデルに対する初期データを投入する](/ja/3.2/howto/initial-data/)

    - [マイグレーションで初期データを投入する](/ja/3.2/howto/initial-data/#providing-initial-data-with-migrations)
    - [フィクスチャでデータを投入する](/ja/3.2/howto/initial-data/#providing-data-with-fixtures)
  - [レガシーなデータベースと Django の統合](/ja/3.2/howto/legacy-databases/)

    - [Django に既存データベースのパラメータを与える](/ja/3.2/howto/legacy-databases/#give-django-your-database-parameters)
    - [モデルを自動生成する](/ja/3.2/howto/legacy-databases/#auto-generate-the-models)
    - [Install the core Django tables](/ja/3.2/howto/legacy-databases/#install-the-core-django-tables)
    - [テストと修正](/ja/3.2/howto/legacy-databases/#test-and-tweak)
  - [Django で CSV を出力する](/ja/3.2/howto/outputting-csv/)

    - [Python の CSV ライブラリを使う](/ja/3.2/howto/outputting-csv/#using-the-python-csv-library)
    - [テンプレートシステムを使う](/ja/3.2/howto/outputting-csv/#using-the-template-system)
    - [他のテキストベースのフォーマット](/ja/3.2/howto/outputting-csv/#other-text-based-formats)
  - [Django で PDF を出力する](/ja/3.2/howto/outputting-pdf/)

    - [ReportLab をインストールする](/ja/3.2/howto/outputting-pdf/#install-reportlab)
    - [Write your view](/ja/3.2/howto/outputting-pdf/#write-your-view)
    - [Other formats](/ja/3.2/howto/outputting-pdf/#other-formats)
  - [Overriding templates](/ja/3.2/howto/overriding-templates/)

    - [Overriding from the project's templates directory](/ja/3.2/howto/overriding-templates/#overriding-from-the-project-s-templates-directory)
    - [Overriding from an app's template directory](/ja/3.2/howto/overriding-templates/#overriding-from-an-app-s-template-directory)
    - [Extending an overridden template](/ja/3.2/howto/overriding-templates/#extending-an-overridden-template)
  - [静的ファイル (画像、JavaScript、CSS など) を管理する](/ja/3.2/howto/static-files/)

    - [静的ファイルの設定](/ja/3.2/howto/static-files/#configuring-static-files)
    - [開発時の静的ファイルの取扱い](/ja/3.2/howto/static-files/#serving-static-files-during-development)
    - [ユーザーによりアップロードされるファイルの開発時の取扱い](/ja/3.2/howto/static-files/#serving-files-uploaded-by-a-user-during-development)
    - [テスト](/ja/3.2/howto/static-files/#testing)
    - [デプロイ](/ja/3.2/howto/static-files/#deployment)
    - [さらに学ぶ](/ja/3.2/howto/static-files/#learn-more)
  - [静的ファイルのデプロイ](/ja/3.2/howto/static-files/deployment/)

    - [本番環境における静的ファイルの配信](/ja/3.2/howto/static-files/deployment/#serving-static-files-in-production)
    - [さらに学ぶ](/ja/3.2/howto/static-files/deployment/#learn-more)
  - [Windows での Django のインストール方法](/ja/3.2/howto/windows/)

    - [Python をインストールする](/ja/3.2/howto/windows/#install-python)
    - [`pip` について](/ja/3.2/howto/windows/#about-pip)
    - [Setting up a virtual environment](/ja/3.2/howto/windows/#setting-up-a-virtual-environment)
    - [Django をインストールする](/ja/3.2/howto/windows/#install-django)
    - [Colored terminal output](/ja/3.2/howto/windows/#colored-terminal-output)
    - [よくある落とし穴](/ja/3.2/howto/windows/#common-pitfalls)
  - [データベースのマイグレーションを書く](/ja/3.2/howto/writing-migrations/)

    - [データのマイグレーションと複数のデータベース](/ja/3.2/howto/writing-migrations/#data-migrations-and-multiple-databases)
    - [Migrations that add unique fields](/ja/3.2/howto/writing-migrations/#migrations-that-add-unique-fields)
    - [マイグレーションの順序をコントロールする](/ja/3.2/howto/writing-migrations/#controlling-the-order-of-migrations)
    - [サードパーティのアプリ間でデータをマイグレーションする](/ja/3.2/howto/writing-migrations/#migrating-data-between-third-party-apps)
    - [Changing a `ManyToManyField` to use a `through` model](/ja/3.2/howto/writing-migrations/#changing-a-manytomanyfield-to-use-a-through-model)
    - [未管理状態のモデルを管理状態に変更する](/ja/3.2/howto/writing-migrations/#changing-an-unmanaged-model-to-managed)
- [Django FAQ よくある質問](/ja/3.2/faq/)

  - [FAQ: 一般的な質問](/ja/3.2/faq/general/)

    - [Django というプロジェクトが作られた経緯を教えてください。](/ja/3.2/faq/general/#why-does-this-project-exist)
    - [“Django” とはどういう意味で、どのように発音するのですか？](/ja/3.2/faq/general/#what-does-django-mean-and-how-do-you-pronounce-it)
    - [Django は安定したプロジェクトですか？](/ja/3.2/faq/general/#is-django-stable)
    - [Django はスケールしますか？](/ja/3.2/faq/general/#does-django-scale)
    - [Django はどんな組織が支援しているのですか？](/ja/3.2/faq/general/#who-s-behind-this)
    - [Djangoはどのようにライセンスされていますか？](/ja/3.2/faq/general/#how-is-django-licensed)
    - [DjangoにPythonのライセンスファイルが含まれているのはなぜですか？](/ja/3.2/faq/general/#why-does-django-include-python-s-license-file)
    - [Django を使っているサイトを教えてください。](/ja/3.2/faq/general/#which-sites-use-django)
    - [Django は MVC フレームワークのように思えるのですが、コントローラ (Controller) を「ビュー  (view)」と呼び、ビュー (View) を「テンプレート (template)」と呼んでいます。なぜ標準的な呼び方をしないのですか？](/ja/3.2/faq/general/#django-appears-to-be-a-mvc-framework-but-you-call-the-controller-the-view-and-the-view-the-template-how-come-you-don-t-use-the-standard-names)
    - [\<フレームワーク X\> には \<機能 Y\> がありますが、なぜ Django にはないのですか](/ja/3.2/faq/general/#framework-x-does-feature-y-why-doesn-t-django)
    - [なぜ既存の Python ライブラリを使わずスクラッチで Django を作ったのですか？](/ja/3.2/faq/general/#why-did-you-write-all-of-django-from-scratch-instead-of-using-other-python-libraries)
    - [Django はコンテンツ管理システム (CMS) なのでしょうか?](/ja/3.2/faq/general/#is-django-a-content-management-system-cms)
    - [Django のドキュメントをダウンロードしてオフラインで読むにはどうすればいいですか？](/ja/3.2/faq/general/#how-can-i-download-the-django-documentation-to-read-it-offline)
    - [Django の引用に関して](/ja/3.2/faq/general/#how-do-i-cite-django)
  - [FAQ: インストール](/ja/3.2/faq/install/)

    - [まずは何をすればよいですか？](/ja/3.2/faq/install/#how-do-i-get-started)
    - [Django を動かすには何が必要ですか？](/ja/3.2/faq/install/#what-are-django-s-prerequisites)
    - [どのバージョンの Python で Django が使えますか?](/ja/3.2/faq/install/#what-python-version-can-i-use-with-django)
    - [DjangoでどのPythonのバージョンを使用すべきですか？](/ja/3.2/faq/install/#what-python-version-should-i-use-with-django)
    - [安定版と開発版のどちらを使うべきなのでしょうか？](/ja/3.2/faq/install/#should-i-use-the-stable-version-or-development-version)
  - [FAQ: Django を使う](/ja/3.2/faq/usage/)

    - [Why do I get an error about importing `DJANGO_SETTINGS_MODULE`?](/ja/3.2/faq/usage/#why-do-i-get-an-error-about-importing-django-settings-module)
    - [テンプレート言語を好きになれません。どうしても使わないとだめですか？](/ja/3.2/faq/usage/#i-can-t-stand-your-template-language-do-i-have-to-use-it)
    - [付属のモデル／データベースレイヤを使わねばならないのですか？](/ja/3.2/faq/usage/#do-i-have-to-use-your-model-database-layer)
    - [画像やファイルのフィールドはどう使うのですか？](/ja/3.2/faq/usage/#how-do-i-use-image-and-file-fields)
    - [どうやったら、全てのテンプレートで使える変数を定義できますか？](/ja/3.2/faq/usage/#how-do-i-make-a-variable-available-to-all-my-templates)
  - [FAQ: 助けを求める](/ja/3.2/faq/help/)

    - [X をするにはどうすればいいですか？どうして Y は動かないのでしょうか？助けはどこで得られますか？](/ja/3.2/faq/help/#how-do-i-do-x-why-doesn-t-y-work-where-can-i-go-to-get-help)
    - [Why hasn't my message appeared on *django-users*?](/ja/3.2/faq/help/#why-hasn-t-my-message-appeared-on-django-users)
    - [誰も私の質問に答えてくれません！どうしたらいいですか？](/ja/3.2/faq/help/#nobody-answered-my-question-what-should-i-do)
    - [バグを発見したみたいです！何をするべきですか？](/ja/3.2/faq/help/#i-think-i-ve-found-a-bug-what-should-i-do)
    - [セキュリティ上の問題を発見したようです！何をするべきですか？](/ja/3.2/faq/help/#i-think-i-ve-found-a-security-problem-what-should-i-do)
  - [FAQ: データベースとモデル](/ja/3.2/faq/models/)

    - [Django が実行している生の SQL クエリを見られますか？](/ja/3.2/faq/models/#how-can-i-see-the-raw-sql-queries-django-is-running)
    - [既存のデータベースで Django を使えますか？](/ja/3.2/faq/models/#can-i-use-django-with-a-pre-existing-database)
    - [モデルを変更した時、どのようにデータベースを更新すればよいですか？](/ja/3.2/faq/models/#if-i-make-changes-to-a-model-how-do-i-update-the-database)
    - [Django のモデルは複合主キーをサポートしますか？](/ja/3.2/faq/models/#do-django-models-support-multiple-column-primary-keys)
    - [Django で NoSQL データベースは利用できますか？](/ja/3.2/faq/models/#does-django-support-nosql-databases)
    - [MyISAM ストレージエンジンを指定するといったような `CREATE TABLE` 文のデータベース固有のカスタマイズを追加するにはどうしたらよいでしょうか？](/ja/3.2/faq/models/#how-do-i-add-database-specific-options-to-my-create-table-statements-such-as-specifying-myisam-as-the-table-type)
  - [FAQ: 管理インタフェース](/ja/3.2/faq/admin/)

    - [ログインできません。正しいユーザ名とパスワードを入力したのに、再度ログインページが表示されます。エラーメッセージも出ません。](/ja/3.2/faq/admin/#i-can-t-log-in-when-i-enter-a-valid-username-and-password-it-just-brings-up-the-login-page-again-with-no-error-messages)
    - [ログインできません。正しいユーザ名とパスワードを入力したはずなのに、再度ログインページが開き、「正しいユーザ名とパスワードを入力してください」というエラーメッセージが表示されます。](/ja/3.2/faq/admin/#i-can-t-log-in-when-i-enter-a-valid-username-and-password-it-brings-up-the-login-page-again-with-a-please-enter-a-correct-username-and-password-error)
    - [管理サイト上で最後にオブジェクトを編集したユーザの情報をあるフィールドに自動的に設定する方法はありますか？](/ja/3.2/faq/admin/#how-do-i-automatically-set-a-field-s-value-to-the-user-who-last-edited-the-object-in-the-admin)
    - [管理サイト上で、オブジェクトを最初に作成したユーザだけがオブジェクトを編集できるようにアクセス権を制限するにはどうすればよいですか？](/ja/3.2/faq/admin/#how-do-i-limit-admin-access-so-that-objects-can-only-be-edited-by-the-users-who-created-them)
    - [開発サーバでは管理サイトの CSS や画像がうまく表示されるのに、mod\_wsgi を使った場合には表示されません。](/ja/3.2/faq/admin/#my-admin-site-css-and-images-showed-up-fine-using-the-development-server-but-they-re-not-displaying-when-using-mod-wsgi)
    - [“list\_filter” に ManyToManyField を入れたのに、フィルタが表示されません。](/ja/3.2/faq/admin/#my-list-filter-contains-a-manytomanyfield-but-the-filter-doesn-t-display)
    - [管理サイトでいくつかのオブジェクトが表示されません。](/ja/3.2/faq/admin/#some-objects-aren-t-appearing-in-the-admin)
    - [管理インターフェイスの機能をカスタマイズしたい場合にはどうすればいいですか？](/ja/3.2/faq/admin/#how-can-i-customize-the-functionality-of-the-admin-interface)
    - [動的に生成された管理サイトが見にくいのですが、どうすれば修正できますか？](/ja/3.2/faq/admin/#the-dynamically-generated-admin-site-is-ugly-how-can-i-change-it)
    - [管理サイトをサポートしているブラウザを教えてください。](/ja/3.2/faq/admin/#what-browsers-are-supported-for-using-the-admin)
  - [FAQ: コードへの貢献](/ja/3.2/faq/contributing/)

    - [Django のコードに貢献し始めるにはどうすればいいですか？](/ja/3.2/faq/contributing/#how-can-i-get-started-contributing-code-to-django)
    - [数週間前、チケットシステムでバグフィックスを送ったのですが、どうして私が送ったパッチは無視されてしまうのでしょうか？](/ja/3.2/faq/contributing/#i-submitted-a-bug-fix-in-the-ticket-system-several-weeks-ago-why-are-you-ignoring-my-patch)
    - [いつ、どのようにしてチームに自分が気にかけているパッチのリマインドをするのでしょうか？](/ja/3.2/faq/contributing/#when-and-how-might-i-remind-the-team-of-a-patch-i-care-about)
    - [何度かリマインドを送ったのですが、私のパッチは無視され続けています！](/ja/3.2/faq/contributing/#but-i-ve-reminded-you-several-times-and-you-keep-ignoring-my-patch)
    - [I'm sure my ticket is absolutely 100% perfect, can I mark it as "Ready For Checkin" myself?](/ja/3.2/faq/contributing/#i-m-sure-my-ticket-is-absolutely-100-perfect-can-i-mark-it-as-ready-for-checkin-myself)
  - [トラブルシューティング](/ja/3.2/faq/troubleshooting/)

    - [`django-admin` 実行時の問題](/ja/3.2/faq/troubleshooting/#problems-running-django-admin)
    - [その他](/ja/3.2/faq/troubleshooting/#miscellaneous)
- [API Reference](/ja/3.2/ref/)

  - [アプリケーション](/ja/3.2/ref/applications/)

    - [プロジェクトとアプリケーション](/ja/3.2/ref/applications/#projects-and-applications)
    - [アプリケーションを設定する](/ja/3.2/ref/applications/#configuring-applications)
    - [アプリケーションの設定](/ja/3.2/ref/applications/#application-configuration)
    - [アプリケーションレジストリ](/ja/3.2/ref/applications/#application-registry)
    - [Initialization process](/ja/3.2/ref/applications/#initialization-process)
  - [システムチェックフレームワーク](/ja/3.2/ref/checks/)

    - [APIリファレンス](/ja/3.2/ref/checks/#api-reference)
    - [組み込みタグ](/ja/3.2/ref/checks/#builtin-tags)
    - [Core system checks](/ja/3.2/ref/checks/#core-system-checks)
    - [`contrib` app checks](/ja/3.2/ref/checks/#contrib-app-checks)
  - [ビルトインのクラスベースビュー API](/ja/3.2/ref/class-based-views/)

    - [Base views](/ja/3.2/ref/class-based-views/base/)
    - [Generic display ビュー](/ja/3.2/ref/class-based-views/generic-display/)
    - [Generic editing ビュー](/ja/3.2/ref/class-based-views/generic-editing/)
    - [Generic date ビュー](/ja/3.2/ref/class-based-views/generic-date-based/)
    - [クラスベースビュー mixin](/ja/3.2/ref/class-based-views/mixins/)
    - [クラスベース汎用ビュー - フラットインデックス](/ja/3.2/ref/class-based-views/flattened-index/)
    - [仕様](/ja/3.2/ref/class-based-views/#specification)
    - [Base vs Generic views](/ja/3.2/ref/class-based-views/#base-vs-generic-views)
  - [クリックジャッキング対策](/ja/3.2/ref/clickjacking/)

    - [クリックジャッキングの例](/ja/3.2/ref/clickjacking/#an-example-of-clickjacking)
    - [クリックジャッキングを防止する](/ja/3.2/ref/clickjacking/#preventing-clickjacking)
    - [使用方法](/ja/3.2/ref/clickjacking/#how-to-use-it)
    - [制限事項](/ja/3.2/ref/clickjacking/#limitations)
  - [`contrib` packages](/ja/3.2/ref/contrib/)

    - [Django の admin サイト](/ja/3.2/ref/contrib/admin/)
    - [`django.contrib.auth`](/ja/3.2/ref/contrib/auth/)
    - [contenttypes フレームワーク](/ja/3.2/ref/contrib/contenttypes/)
    - [The flatpages app](/ja/3.2/ref/contrib/flatpages/)
    - [GeoDjango](/ja/3.2/ref/contrib/gis/)
    - [`django.contrib.humanize`](/ja/3.2/ref/contrib/humanize/)
    - [メッセージフレームワーク](/ja/3.2/ref/contrib/messages/)
    - [`django.contrib.postgres`](/ja/3.2/ref/contrib/postgres/)
    - [The redirects app](/ja/3.2/ref/contrib/redirects/)
    - [The sitemap framework](/ja/3.2/ref/contrib/sitemaps/)
    - [The "sites" framework](/ja/3.2/ref/contrib/sites/)
    - [The `staticfiles` app](/ja/3.2/ref/contrib/staticfiles/)
    - [The syndication feed framework](/ja/3.2/ref/contrib/syndication/)
    - [`admin`](/ja/3.2/ref/contrib/#admin)
    - [`auth`](/ja/3.2/ref/contrib/#auth)
    - [`contenttypes`](/ja/3.2/ref/contrib/#contenttypes)
    - [`flatpages`](/ja/3.2/ref/contrib/#flatpages)
    - [`gis`](/ja/3.2/ref/contrib/#gis)
    - [`humanize`](/ja/3.2/ref/contrib/#humanize)
    - [`messages`](/ja/3.2/ref/contrib/#messages)
    - [`postgres`](/ja/3.2/ref/contrib/#postgres)
    - [`redirects`](/ja/3.2/ref/contrib/#redirects)
    - [`sessions`](/ja/3.2/ref/contrib/#sessions)
    - [`sites`](/ja/3.2/ref/contrib/#sites)
    - [`sitemaps`](/ja/3.2/ref/contrib/#sitemaps)
    - [`syndication`](/ja/3.2/ref/contrib/#syndication)
    - [Other add-ons](/ja/3.2/ref/contrib/#other-add-ons)
  - [クロスサイトリクエストフォージェリ (CSRF) 対策](/ja/3.2/ref/csrf/)

    - [使用方法](/ja/3.2/ref/csrf/#how-to-use-it)
    - [拒否されたリクエスト](/ja/3.2/ref/csrf/#rejected-requests)
    - [How it works](/ja/3.2/ref/csrf/#how-it-works)
    - [Caching](/ja/3.2/ref/csrf/#caching)
    - [テスト](/ja/3.2/ref/csrf/#testing)
    - [制限事項](/ja/3.2/ref/csrf/#limitations)
    - [Edge cases](/ja/3.2/ref/csrf/#edge-cases)
    - [Contrib and reusable apps](/ja/3.2/ref/csrf/#contrib-and-reusable-apps)
    - [設定](/ja/3.2/ref/csrf/#settings)
    - [Frequently Asked Questions](/ja/3.2/ref/csrf/#frequently-asked-questions)
  - [データベース](/ja/3.2/ref/databases/)

    - [General notes](/ja/3.2/ref/databases/#general-notes)
    - [PostgreSQL notes](/ja/3.2/ref/databases/#postgresql-notes)
    - [MariaDB notes](/ja/3.2/ref/databases/#mariadb-notes)
    - [MySQL notes](/ja/3.2/ref/databases/#mysql-notes)
    - [SQLite notes](/ja/3.2/ref/databases/#sqlite-notes)
    - [Oracle notes](/ja/3.2/ref/databases/#oracle-notes)
    - [Subclassing the built-in database backends](/ja/3.2/ref/databases/#subclassing-the-built-in-database-backends)
    - [Using a 3rd-party database backend](/ja/3.2/ref/databases/#using-a-3rd-party-database-backend)
  - [`django-admin` と `manage.py`](/ja/3.2/ref/django-admin/)

    - [使い方](/ja/3.2/ref/django-admin/#usage)
    - [Available commands](/ja/3.2/ref/django-admin/#available-commands)
    - [Commands provided by applications](/ja/3.2/ref/django-admin/#commands-provided-by-applications)
    - [Default options](/ja/3.2/ref/django-admin/#default-options)
    - [Extra niceties](/ja/3.2/ref/django-admin/#extra-niceties)
  - [Running management commands from your code](/ja/3.2/ref/django-admin/#running-management-commands-from-your-code)

    - [Output redirection](/ja/3.2/ref/django-admin/#output-redirection)
  - [Django の例外](/ja/3.2/ref/exceptions/)

    - [Django Core 例外](/ja/3.2/ref/exceptions/#module-django.core.exceptions)
    - [URL Resolver の例外](/ja/3.2/ref/exceptions/#url-resolver-exceptions)
    - [データベースの例外](/ja/3.2/ref/exceptions/#database-exceptions)
    - [Http の例外](/ja/3.2/ref/exceptions/#http-exceptions)
    - [Sessions Exceptions](/ja/3.2/ref/exceptions/#sessions-exceptions)
    - [トランザクションの例外](/ja/3.2/ref/exceptions/#transaction-exceptions)
    - [テストフレームワークの例外](/ja/3.2/ref/exceptions/#testing-framework-exceptions)
    - [Python の例外](/ja/3.2/ref/exceptions/#python-exceptions)
  - [ファイルのハンドリング](/ja/3.2/ref/files/)

    - [`File` オブジェクト](/ja/3.2/ref/files/file/)
    - [File storage API](/ja/3.2/ref/files/storage/)
    - [アップロードファイルとアップロードハンドラ](/ja/3.2/ref/files/uploads/)
  - [フォーム](/ja/3.2/ref/forms/)

    - [フォーム API](/ja/3.2/ref/forms/api/)
    - [Form fields](/ja/3.2/ref/forms/fields/)
    - [モデルフォーム関数](/ja/3.2/ref/forms/models/)
    - [Formset Functions](/ja/3.2/ref/forms/formsets/)
    - [The form rendering API](/ja/3.2/ref/forms/renderers/)
    - [ウィジェット](/ja/3.2/ref/forms/widgets/)
    - [フォームとフィールドの検証](/ja/3.2/ref/forms/validation/)
  - [ミドルウェア](/ja/3.2/ref/middleware/)

    - [使用できる middleware](/ja/3.2/ref/middleware/#available-middleware)
    - [Middleware の順序](/ja/3.2/ref/middleware/#middleware-ordering)
  - [マイグレーション操作](/ja/3.2/ref/migration-operations/)

    - [スキーマ操作](/ja/3.2/ref/migration-operations/#schema-operations)
    - [特別な操作](/ja/3.2/ref/migration-operations/#special-operations)
    - [自分で操作を書く](/ja/3.2/ref/migration-operations/#writing-your-own)
  - [モデル](/ja/3.2/ref/models/)

    - [モデルフィールドリファレンス](/ja/3.2/ref/models/fields/)
    - [Field attribute reference](/ja/3.2/ref/models/fields/#field-attribute-reference)
    - [Model index reference](/ja/3.2/ref/models/indexes/)
    - [Constraints reference](/ja/3.2/ref/models/constraints/)
    - [Model `_meta` API](/ja/3.2/ref/models/meta/)
    - [Related objects reference](/ja/3.2/ref/models/relations/)
    - [Model クラスのリファレンス](/ja/3.2/ref/models/class/)
    - [Model `Meta` options](/ja/3.2/ref/models/options/)
    - [モデルインスタンスリファレンス](/ja/3.2/ref/models/instances/)
    - [`QuerySet` API reference](/ja/3.2/ref/models/querysets/)
    - [Lookup API reference](/ja/3.2/ref/models/lookups/)
    - [クエリー式](/ja/3.2/ref/models/expressions/)
    - [Conditional Expressions](/ja/3.2/ref/models/conditional-expressions/)
    - [Database Functions](/ja/3.2/ref/models/database-functions/)
  - [Paginator](/ja/3.2/ref/paginator/)

    - [`Paginator` class](/ja/3.2/ref/paginator/#paginator-class)
    - [`Page` class](/ja/3.2/ref/paginator/#page-class)
    - [例外](/ja/3.2/ref/paginator/#exceptions)
  - [リクエストとレスポンスのオブジェクト](/ja/3.2/ref/request-response/)

    - [簡単な概要](/ja/3.2/ref/request-response/#quick-overview)
    - [`HttpRequest` オブジェクト](/ja/3.2/ref/request-response/#httprequest-objects)
    - [`QueryDict` オブジェクト](/ja/3.2/ref/request-response/#querydict-objects)
    - [`HttpResponse` オブジェクト](/ja/3.2/ref/request-response/#httpresponse-objects)
    - [`JsonResponse` objects](/ja/3.2/ref/request-response/#jsonresponse-objects)
    - [`StreamingHttpResponse` objects](/ja/3.2/ref/request-response/#streaminghttpresponse-objects)
    - [`FileResponse` objects](/ja/3.2/ref/request-response/#fileresponse-objects)
  - [`SchemaEditor`](/ja/3.2/ref/schema-editor/)

    - [メソッド](/ja/3.2/ref/schema-editor/#methods)
    - [属性](/ja/3.2/ref/schema-editor/#attributes)
  - [設定](/ja/3.2/ref/settings/)

    - [コアの設定](/ja/3.2/ref/settings/#core-settings)
    - [Auth](/ja/3.2/ref/settings/#auth)
    - [メッセージ](/ja/3.2/ref/settings/#messages)
    - [セッション](/ja/3.2/ref/settings/#sessions)
    - [サイト](/ja/3.2/ref/settings/#sites)
    - [静的ファイル](/ja/3.2/ref/settings/#static-files)
    - [Core Settings Topical Index](/ja/3.2/ref/settings/#core-settings-topical-index)
  - [Signals](/ja/3.2/ref/signals/)

    - [Model signals](/ja/3.2/ref/signals/#module-django.db.models.signals)
    - [Management signals](/ja/3.2/ref/signals/#management-signals)
    - [Request/response signals](/ja/3.2/ref/signals/#module-django.core.signals)
    - [Test signals](/ja/3.2/ref/signals/#module-django.test.signals)
    - [Database Wrappers](/ja/3.2/ref/signals/#module-django.db.backends)
  - [テンプレート](/ja/3.2/ref/templates/)

    - [The Django Template Language](/ja/3.2/ref/templates/language/)
    - [組み込みタグとフィルタ](/ja/3.2/ref/templates/builtins/)
    - [The Django template language: for Python programmers](/ja/3.2/ref/templates/api/)
  - [`TemplateResponse` and `SimpleTemplateResponse`](/ja/3.2/ref/template-response/)

    - [`SimpleTemplateResponse` objects](/ja/3.2/ref/template-response/#simpletemplateresponse-objects)
    - [`TemplateResponse` objects](/ja/3.2/ref/template-response/#templateresponse-objects)
    - [The rendering process](/ja/3.2/ref/template-response/#the-rendering-process)
    - [Using `TemplateResponse` and `SimpleTemplateResponse`](/ja/3.2/ref/template-response/#using-templateresponse-and-simpletemplateresponse)
  - [Unicode data](/ja/3.2/ref/unicode/)

    - [Creating the database](/ja/3.2/ref/unicode/#creating-the-database)
    - [General string handling](/ja/3.2/ref/unicode/#general-string-handling)
    - [モデル](/ja/3.2/ref/unicode/#models)
    - [テンプレート](/ja/3.2/ref/unicode/#templates)
    - [Files](/ja/3.2/ref/unicode/#files)
    - [Form submission](/ja/3.2/ref/unicode/#form-submission)
  - [`django.urls` utility functions](/ja/3.2/ref/urlresolvers/)

    - [`reverse()`](/ja/3.2/ref/urlresolvers/#reverse)
    - [`reverse_lazy()`](/ja/3.2/ref/urlresolvers/#reverse-lazy)
    - [`resolve()`](/ja/3.2/ref/urlresolvers/#resolve)
    - [`get_script_prefix()`](/ja/3.2/ref/urlresolvers/#get-script-prefix)
  - [`django.urls` functions for use in URLconfs](/ja/3.2/ref/urls/)

    - [`path()`](/ja/3.2/ref/urls/#path)
    - [`re_path()`](/ja/3.2/ref/urls/#re-path)
    - [`include()`](/ja/3.2/ref/urls/#include)
    - [`register_converter()`](/ja/3.2/ref/urls/#register-converter)
  - [`django.conf.urls` functions for use in URLconfs](/ja/3.2/ref/urls/#module-django.conf.urls)

    - [`static()`](/ja/3.2/ref/urls/#static)
    - [`url()`](/ja/3.2/ref/urls/#url)
    - [`handler400`](/ja/3.2/ref/urls/#handler400)
    - [`handler403`](/ja/3.2/ref/urls/#handler403)
    - [`handler404`](/ja/3.2/ref/urls/#handler404)
    - [`handler500`](/ja/3.2/ref/urls/#handler500)
  - [Django Utils](/ja/3.2/ref/utils/)

    - [`django.utils.cache`](/ja/3.2/ref/utils/#module-django.utils.cache)
    - [`django.utils.dateparse`](/ja/3.2/ref/utils/#module-django.utils.dateparse)
    - [`django.utils.decorators`](/ja/3.2/ref/utils/#module-django.utils.decorators)
    - [`django.utils.encoding`](/ja/3.2/ref/utils/#module-django.utils.encoding)
    - [`django.utils.feedgenerator`](/ja/3.2/ref/utils/#module-django.utils.feedgenerator)
    - [`django.utils.functional`](/ja/3.2/ref/utils/#module-django.utils.functional)
    - [`django.utils.html`](/ja/3.2/ref/utils/#module-django.utils.html)
    - [`django.utils.http`](/ja/3.2/ref/utils/#module-django.utils.http)
    - [`django.utils.module_loading`](/ja/3.2/ref/utils/#module-django.utils.module_loading)
    - [`django.utils.safestring`](/ja/3.2/ref/utils/#module-django.utils.safestring)
    - [`django.utils.text`](/ja/3.2/ref/utils/#module-django.utils.text)
    - [`django.utils.timezone`](/ja/3.2/ref/utils/#module-django.utils.timezone)
    - [`django.utils.translation`](/ja/3.2/ref/utils/#module-django.utils.translation)
  - [バリデータ](/ja/3.2/ref/validators/)

    - [バリデータを記述する](/ja/3.2/ref/validators/#writing-validators)
    - [バリデータはどのように実行されるか](/ja/3.2/ref/validators/#how-validators-are-run)
    - [ビルトインのバリデータ](/ja/3.2/ref/validators/#built-in-validators)
  - [Built-in Views](/ja/3.2/ref/views/)

    - [Serving files in development](/ja/3.2/ref/views/#serving-files-in-development)
    - [Error views](/ja/3.2/ref/views/#error-views)
- [メタドキュメントとその他](/ja/3.2/misc/)

  - [API の安定性](/ja/3.2/misc/api-stability/)

    - ["stable" とは？](/ja/3.2/misc/api-stability/#what-stable-means)
    - [stable な API](/ja/3.2/misc/api-stability/#stable-apis)
    - [例外](/ja/3.2/misc/api-stability/#exceptions)
  - [設計思想](/ja/3.2/misc/design-philosophies/)

    - [概要](/ja/3.2/misc/design-philosophies/#overall)
    - [モデル](/ja/3.2/misc/design-philosophies/#models)
    - [データベース API](/ja/3.2/misc/design-philosophies/#database-api)
    - [URL デザイン](/ja/3.2/misc/design-philosophies/#url-design)
    - [テンプレートシステム](/ja/3.2/misc/design-philosophies/#template-system)
    - [ビュー](/ja/3.2/misc/design-philosophies/#views)
    - [キャッシュフレームワーク](/ja/3.2/misc/design-philosophies/#cache-framework)
  - [サードパーティの Django ディストリビューション](/ja/3.2/misc/distributions/)

    - [ディストリビュータ向け](/ja/3.2/misc/distributions/#for-distributors)
- [用語集](/ja/3.2/glossary/)
- [リリースノート](/ja/3.2/releases/)

  - [Final リリース](/ja/3.2/releases/#final-releases)

    - [3.2 release](/ja/3.2/releases/#release)
    - [3.1 release](/ja/3.2/releases/#id1)
    - [3.0 リリース](/ja/3.2/releases/#id2)
    - [2.2 release](/ja/3.2/releases/#id3)
    - [2.1 リリース](/ja/3.2/releases/#id4)
    - [2.0 リリース](/ja/3.2/releases/#id5)
    - [1.11 リリース](/ja/3.2/releases/#id6)
    - [1.10 リリース](/ja/3.2/releases/#id7)
    - [1.9 リリース](/ja/3.2/releases/#id8)
    - [1.8 リリース](/ja/3.2/releases/#id9)
    - [1.7 リリース](/ja/3.2/releases/#id10)
    - [1.6 リリース](/ja/3.2/releases/#id11)
    - [1.5 リリース](/ja/3.2/releases/#id12)
    - [1.4 リリース](/ja/3.2/releases/#id13)
    - [1.3 リリース](/ja/3.2/releases/#id14)
    - [1.2 リリース](/ja/3.2/releases/#id15)
    - [1.1 リリース](/ja/3.2/releases/#id16)
    - [1.0 リリース](/ja/3.2/releases/#id17)
    - [1.0 以前のリリース](/ja/3.2/releases/#pre-1-0-releases)
  - [セキュリティリリース](/ja/3.2/releases/#security-releases)
- [Django internals](/ja/3.2/internals/)

  - [Django へのコントリビュート](/ja/3.2/internals/contributing/)

    - [Work on the Django framework](/ja/3.2/internals/contributing/#work-on-the-django-framework)
    - [Join the Django community ❤️](/ja/3.2/internals/contributing/#join-the-django-community)
  - [Mailing lists](/ja/3.2/internals/mailing-lists/)

    - [`django-users`](/ja/3.2/internals/mailing-lists/#django-users)
    - [`django-developers`](/ja/3.2/internals/mailing-lists/#django-developers)
    - [`django-announce`](/ja/3.2/internals/mailing-lists/#django-announce)
    - [`django-updates`](/ja/3.2/internals/mailing-lists/#django-updates)
  - [Organization of the Django Project](/ja/3.2/internals/organization/)

    - [Principles](/ja/3.2/internals/organization/#principles)
    - [Mergers](/ja/3.2/internals/organization/#mergers)
    - [リリース担当者 (Releasers)](/ja/3.2/internals/organization/#releasers)
    - [Technical board](/ja/3.2/internals/organization/#technical-board)
    - [Changing the organization](/ja/3.2/internals/organization/#changing-the-organization)
  - [Django のセキュリティポリシー](/ja/3.2/internals/security/)

    - [Reporting security issues](/ja/3.2/internals/security/#reporting-security-issues)
    - [サポートバージョン](/ja/3.2/internals/security/#supported-versions)
    - [How Django discloses security issues](/ja/3.2/internals/security/#how-django-discloses-security-issues)
    - [Who receives advance notification](/ja/3.2/internals/security/#who-receives-advance-notification)
    - [Requesting notifications](/ja/3.2/internals/security/#requesting-notifications)
  - [Django のリリースプロセス](/ja/3.2/internals/release-process/)

    - [公式リリース](/ja/3.2/internals/release-process/#official-releases)
    - [リリース周期](/ja/3.2/internals/release-process/#release-cadence)
    - [非推奨のポリシー](/ja/3.2/internals/release-process/#deprecation-policy)
    - [サポートバージョン](/ja/3.2/internals/release-process/#supported-versions)
    - [リリースプロセス](/ja/3.2/internals/release-process/#release-process)
  - [Django Deprecation Timeline](/ja/3.2/internals/deprecation/)

    - [4.1](/ja/3.2/internals/deprecation/#deprecation-removed-in-4-1)
    - [4.0](/ja/3.2/internals/deprecation/#deprecation-removed-in-4-0)
    - [3.1](/ja/3.2/internals/deprecation/#deprecation-removed-in-3-1)
    - [3.0](/ja/3.2/internals/deprecation/#deprecation-removed-in-3-0)
    - [2.1](/ja/3.2/internals/deprecation/#deprecation-removed-in-2-1)
    - [2.0](/ja/3.2/internals/deprecation/#deprecation-removed-in-2-0)
    - [1.10](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-10)
    - [1.9](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-9)
    - [1.8](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-8)
    - [1.7](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-7)
    - [1.6](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-6)
    - [1.5](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-5)
    - [1.4](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-4)
    - [1.3](/ja/3.2/internals/deprecation/#deprecation-removed-in-1-3)
  - [Djangoソースコードレポジトリ](/ja/3.2/internals/git/)

    - [大局的な概要](/ja/3.2/internals/git/#high-level-overview)
    - [The main branch](/ja/3.2/internals/git/#the-main-branch)
    - [Stable branches](/ja/3.2/internals/git/#stable-branches)
    - [タグ](/ja/3.2/internals/git/#id1)
  - [How is Django Formed?](/ja/3.2/internals/howto-release-django/)

    - [オーバービュー](/ja/3.2/internals/howto-release-django/#overview)
    - [Prerequisites](/ja/3.2/internals/howto-release-django/#prerequisites)
    - [Pre-release tasks](/ja/3.2/internals/howto-release-django/#pre-release-tasks)
    - [Preparing for release](/ja/3.2/internals/howto-release-django/#preparing-for-release)
    - [Actually rolling the release](/ja/3.2/internals/howto-release-django/#actually-rolling-the-release)
    - [Making the release(s) available to the public](/ja/3.2/internals/howto-release-django/#making-the-release-s-available-to-the-public)
    - [Post-release](/ja/3.2/internals/howto-release-django/#post-release)
    - [New stable branch tasks](/ja/3.2/internals/howto-release-django/#new-stable-branch-tasks)
    - [Notes on setting the VERSION tuple](/ja/3.2/internals/howto-release-django/#notes-on-setting-the-version-tuple)

## 索引、用語集、表

- [索引](/ja/3.2/genindex/)
- [モジュール索引](/ja/3.2/py-modindex/)
- [用語集](/ja/3.2/glossary/)
