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

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

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

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

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

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

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

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

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

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

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

    - [admin フォームのカスタマイズ](/ja/5.2/intro/tutorial07/#customize-the-admin-form)
    - [リレーション先オブジェクトの追加](/ja/5.2/intro/tutorial07/#adding-related-objects)
    - [管理サイトのチェンジリストページをカスタマイズする](/ja/5.2/intro/tutorial07/#customize-the-admin-change-list)
    - [管理サイトのルック & フィールをカスタマイズする](/ja/5.2/intro/tutorial07/#customize-the-admin-look-and-feel)
    - [admin index ページをカスタムする](/ja/5.2/intro/tutorial07/#customize-the-admin-index-page)
  - [はじめての Django アプリ作成、その 8](/ja/5.2/intro/tutorial08/)

    - [Django Debug Toolbarをインストールする](/ja/5.2/intro/tutorial08/#installing-django-debug-toolbar)
    - [他の人の助けを得る](/ja/5.2/intro/tutorial08/#getting-help-from-others)
    - [その他のサードパーティ製パッケージをインストールする](/ja/5.2/intro/tutorial08/#installing-other-third-party-packages)
    - [次は何をしましょうか？](/ja/5.2/intro/tutorial08/#what-s-next)
  - [高度なチュートリアル: 再利用可能アプリの書き方](/ja/5.2/intro/reusable-apps/)

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

    - [ドキュメントの探し方](/ja/5.2/intro/whatsnext/#finding-documentation)
    - [ドキュメントの構成](/ja/5.2/intro/whatsnext/#how-the-documentation-is-organized)
    - [ドキュメントの更新の方針](/ja/5.2/intro/whatsnext/#how-documentation-is-updated)
    - [ドキュメントの入手](/ja/5.2/intro/whatsnext/#where-to-get-it)
    - [バージョンごとの違い](/ja/5.2/intro/whatsnext/#differences-between-versions)
  - [Djangoにはじめて貢献する](/ja/5.2/intro/contributing/)

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

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

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

    - [モデル](/ja/5.2/topics/db/models/)
    - [クエリを作成する](/ja/5.2/topics/db/queries/)
    - [アグリゲーション (集計)](/ja/5.2/topics/db/aggregation/)
    - [検索](/ja/5.2/topics/db/search/)
    - [マネージャ](/ja/5.2/topics/db/managers/)
    - [素の SQL 文の実行](/ja/5.2/topics/db/sql/)
    - [データベースのトランザクション](/ja/5.2/topics/db/transactions/)
    - [複数のデータベース](/ja/5.2/topics/db/multi-db/)
    - [テーブル空間（tablespace）](/ja/5.2/topics/db/tablespaces/)
    - [データベースアクセスの最適化](/ja/5.2/topics/db/optimization/)
    - [データベースの計測](/ja/5.2/topics/db/instrumentation/)
    - [フィクスチャ (fixture)](/ja/5.2/topics/db/fixtures/)
    - [モデルリレーションシップ API の使用例](/ja/5.2/topics/db/examples/)
  - [HTTP リクエストのハンドリング](/ja/5.2/topics/http/)

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

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

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

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

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

    - [モデルでファイルを使う](/ja/5.2/topics/files/#using-files-in-models)
    - [`File` オブジェクト](/ja/5.2/topics/files/#the-file-object)
    - [ファイルストレージ](/ja/5.2/topics/files/#file-storage)
  - [Django におけるテスト](/ja/5.2/topics/testing/)

    - [テストを書いて実行する](/ja/5.2/topics/testing/overview/)
    - [テストツール](/ja/5.2/topics/testing/tools/)
    - [テストに関する高度なトピック](/ja/5.2/topics/testing/advanced/)
  - [Django でのユーザー認証](/ja/5.2/topics/auth/)

    - [概要](/ja/5.2/topics/auth/#overview)
    - [インストール](/ja/5.2/topics/auth/#installation)
    - [使い方](/ja/5.2/topics/auth/#usage)
  - [Django のキャッシュフレームワーク](/ja/5.2/topics/cache/)

    - [キャッシュのセットアップ](/ja/5.2/topics/cache/#setting-up-the-cache)
    - [サイトごとのキャッシュ](/ja/5.2/topics/cache/#the-per-site-cache)
    - [ビューごとのキャッシュ](/ja/5.2/topics/cache/#the-per-view-cache)
    - [テンプレートフラグメントのキャッシュ](/ja/5.2/topics/cache/#template-fragment-caching)
    - [低レベルキャッシュ API](/ja/5.2/topics/cache/#the-low-level-cache-api)
    - [非同期サポート](/ja/5.2/topics/cache/#asynchronous-support)
    - [ダウンストリームキャッシュ](/ja/5.2/topics/cache/#downstream-caches)
    - [`Vary` ヘッダーを使う](/ja/5.2/topics/cache/#using-vary-headers)
    - [キャッシュの制御: 他のヘッダを使用する](/ja/5.2/topics/cache/#controlling-cache-using-other-headers)
    - [`MIDDLEWARE` の順序](/ja/5.2/topics/cache/#order-of-middleware)
  - [条件付きのビュー処理](/ja/5.2/topics/conditional-view-processing/)

    - [`condition` デコレータ](/ja/5.2/topics/conditional-view-processing/#the-condition-decorator)
    - [1つの値を計算するだけのショートカット](/ja/5.2/topics/conditional-view-processing/#shortcuts-for-only-computing-one-value)
    - [その他の HTTP メソッドでデコレータを使用する](/ja/5.2/topics/conditional-view-processing/#using-the-decorators-with-other-http-methods)
    - [ミドルウェアの条件付き処理との比較](/ja/5.2/topics/conditional-view-processing/#comparison-with-middleware-conditional-processing)
  - [複合主キー](/ja/5.2/topics/composite-primary-key/)

    - [複合主キーへの移行](/ja/5.2/topics/composite-primary-key/#migrating-to-a-composite-primary-key)
    - [複合主キーとリレーション](/ja/5.2/topics/composite-primary-key/#composite-primary-keys-and-relations)
    - [複合主キーとデータベース関数](/ja/5.2/topics/composite-primary-key/#composite-primary-keys-and-database-functions)
    - [フォーム内での複合主キー](/ja/5.2/topics/composite-primary-key/#composite-primary-keys-in-forms)
    - [モデルバリデーションと複合主キー](/ja/5.2/topics/composite-primary-key/#composite-primary-keys-in-model-validation)
    - [複合主キーに対応したアプリケーションをつくる](/ja/5.2/topics/composite-primary-key/#building-composite-primary-key-ready-applications)
  - [暗号署名](/ja/5.2/topics/signing/)

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

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

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

    - [概要](/ja/5.2/topics/logging/#overview)
    - [セキュリティへの影響](/ja/5.2/topics/logging/#security-implications)
    - [ロギングを設定する](/ja/5.2/topics/logging/#configuring-logging)
  - [ページ分割 (Pagination)](/ja/5.2/topics/pagination/)

    - [`Paginator` クラス](/ja/5.2/topics/pagination/#the-paginator-class)
    - [カスタマイズ例](/ja/5.2/topics/pagination/#example)
    - [`ListView` のページ分割](/ja/5.2/topics/pagination/#paginating-a-listview)
    - [`Paginator` をビュー関数で使用する](/ja/5.2/topics/pagination/#using-paginator-in-a-view-function)
  - [Django におけるセキュリティ](/ja/5.2/topics/security/)

    - [ユーザーの入力は常にサニタイズしてください](/ja/5.2/topics/security/#always-sanitize-user-input)
    - [クロス・サイト・スクリプティング (XSS) の防御](/ja/5.2/topics/security/#cross-site-scripting-xss-protection)
    - [クロス・サイト・リクエスト・フォージェリ(CSRF)の防御](/ja/5.2/topics/security/#cross-site-request-forgery-csrf-protection)
    - [SQL injectionへの防御](/ja/5.2/topics/security/#sql-injection-protection)
    - [クリックジャッキング (Clickjacking) に対する防御](/ja/5.2/topics/security/#clickjacking-protection)
    - [SSL/HTTPS](/ja/5.2/topics/security/#ssl-https)
    - [Host ヘッダーの検証](/ja/5.2/topics/security/#host-header-validation)
    - [リファラ ポリシー](/ja/5.2/topics/security/#referrer-policy)
    - [クロスオリジン・オープナー・ポリシー](/ja/5.2/topics/security/#cross-origin-opener-policy)
    - [セッションのセキュリティ](/ja/5.2/topics/security/#session-security)
    - [ユーザーがアップロードしたコンテンツ](/ja/5.2/topics/security/#user-uploaded-content)
    - [その他のセキュリティトピック](/ja/5.2/topics/security/#additional-security-topics)
  - [パフォーマンスと最適化](/ja/5.2/topics/performance/)

    - [はじめに](/ja/5.2/topics/performance/#introduction)
    - [一般的なアプローチ](/ja/5.2/topics/performance/#general-approaches)
    - [キャッシュ](/ja/5.2/topics/performance/#caching)
    - [遅延について理解する](/ja/5.2/topics/performance/#understanding-laziness)
    - [データベース](/ja/5.2/topics/performance/#databases)
    - [HTTP のパフォーマンス](/ja/5.2/topics/performance/#http-performance)
    - [テンプレートのパフォーマンス](/ja/5.2/topics/performance/#template-performance)
    - [利用可能なソフトウェアの異なるバージョンを使う](/ja/5.2/topics/performance/#using-different-versions-of-available-software)
  - [Django オブジェクトのシリアライズ](/ja/5.2/topics/serialization/)

    - [データのシリアライズ](/ja/5.2/topics/serialization/#serializing-data)
    - [データのデシリアライズ](/ja/5.2/topics/serialization/#deserializing-data)
    - [シリアライズフォーマット](/ja/5.2/topics/serialization/#serialization-formats)
    - [ナチュラルキー](/ja/5.2/topics/serialization/#natural-keys)
  - [Djangoの設定](/ja/5.2/topics/settings/)

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

    - [シグナルを待ち受ける](/ja/5.2/topics/signals/#listening-to-signals)
    - [シグナルの定義と送信](/ja/5.2/topics/signals/#defining-and-sending-signals)
    - [シグナルを切断する](/ja/5.2/topics/signals/#disconnecting-signals)
  - [システムチェックフレームワーク](/ja/5.2/topics/checks/)

    - [独自のチェックを書く](/ja/5.2/topics/checks/#writing-your-own-checks)
  - [外部パッケージ](/ja/5.2/topics/external-packages/)

    - [ローカルフレーバー](/ja/5.2/topics/external-packages/#localflavor)
    - [Comments](/ja/5.2/topics/external-packages/#comments)
    - [Formtools](/ja/5.2/topics/external-packages/#formtools)
  - [非同期サポート](/ja/5.2/topics/async/)

    - [非同期ビュー](/ja/5.2/topics/async/#async-views)
    - [非同期安全性](/ja/5.2/topics/async/#async-safety)
    - [非同期アダプター関数](/ja/5.2/topics/async/#async-adapter-functions)
- [How-to ガイド](/ja/5.2/howto/)

  - [モデル、データおよびデータベース](/ja/5.2/howto/#models-data-and-databases)

    - [モデルに初期データを投入する](/ja/5.2/howto/initial-data/)
    - [レガシーなデータベースと Django の統合](/ja/5.2/howto/legacy-databases/)
    - [カスタムのモデルフィールドを作成する](/ja/5.2/howto/custom-model-fields/)
    - [データベースのマイグレーションの作成方法](/ja/5.2/howto/writing-migrations/)
    - [カスタムのルックアップを書く](/ja/5.2/howto/custom-lookups/)
  - [テンプレートと出力](/ja/5.2/howto/#templates-and-output)

    - [CSVを出力する](/ja/5.2/howto/outputting-csv/)
    - [PDFファイルを作成する](/ja/5.2/howto/outputting-pdf/)
    - [テンプレートをオーバーライドする](/ja/5.2/howto/overriding-templates/)
    - [テンプレートのバックエンドをカスタマイズする](/ja/5.2/howto/custom-template-backend/)
    - [独自のテンプレートタグとフィルタを作る](/ja/5.2/howto/custom-template-tags/)
  - [プロジェクトの設定と管理](/ja/5.2/howto/#project-configuration-and-management)

    - [静的ファイル (画像、JavaScript、CSS など) を管理する](/ja/5.2/howto/static-files/)
    - [ロギングの設定と利用](/ja/5.2/howto/logging/)
    - [エラーレポートの管理](/ja/5.2/howto/error-reporting/)
    - [Djangoアプリケーションを削除する](/ja/5.2/howto/delete-app/)
  - [インストール、デプロイおよびアップグレード](/ja/5.2/howto/#installing-deploying-and-upgrading)

    - [Django の新しいバージョンへの更新](/ja/5.2/howto/upgrade-version/)
    - [Windows での Django のインストール方法](/ja/5.2/howto/windows/)
    - [Djangoをデプロイするには](/ja/5.2/howto/deployment/)
    - [静的ファイルをデプロイする](/ja/5.2/howto/static-files/deployment/)
  - [その他のガイド](/ja/5.2/howto/#other-guides)

    - [`REMOTE_USER` で認証する](/ja/5.2/howto/auth-remote-user/)
    - [Django の CSRF 保護を利用する](/ja/5.2/howto/csrf/)
    - [カスタムのストレージクラスを書く](/ja/5.2/howto/custom-file-storage/)
    - [カスタム `django-admin` コマンドの作り方](/ja/5.2/howto/custom-management-commands/)
    - [カスタム `shell` コマンドの作り方](/ja/5.2/howto/custom-shell/)
- [Django FAQ よくある質問](/ja/5.2/faq/)

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

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

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

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

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

    - [Django が実行している生の SQL クエリを見られますか？](/ja/5.2/faq/models/#how-can-i-see-the-raw-sql-queries-django-is-running)
    - [既存のデータベースで Django を使えますか？](/ja/5.2/faq/models/#can-i-use-django-with-a-preexisting-database)
    - [モデルを変更した時、どのようにデータベースを更新すればよいですか？](/ja/5.2/faq/models/#if-i-make-changes-to-a-model-how-do-i-update-the-database)
    - [Django のモデルは複合主キーをサポートしますか？](/ja/5.2/faq/models/#do-django-models-support-multiple-column-primary-keys)
    - [Django で NoSQL データベースは利用できますか？](/ja/5.2/faq/models/#does-django-support-nosql-databases)
    - [MyISAM ストレージエンジンを指定するといったような `CREATE TABLE` 文のデータベース固有のカスタマイズを追加するにはどうしたらよいでしょうか？](/ja/5.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/5.2/faq/admin/)

    - [ログインできません。正しいユーザ名とパスワードを入力したのに、再度ログインページが表示されます。エラーメッセージも出ません。](/ja/5.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/5.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/5.2/faq/admin/#how-do-i-automatically-set-a-field-s-value-to-the-user-who-last-edited-the-object-in-the-admin)
    - [管理サイト上で、オブジェクトを最初に作成したユーザだけがオブジェクトを編集できるようにアクセス権を制限するにはどうすればよいですか？](/ja/5.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/5.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/5.2/faq/admin/#my-list-filter-contains-a-manytomanyfield-but-the-filter-doesn-t-display)
    - [管理サイトでいくつかのオブジェクトが表示されません。](/ja/5.2/faq/admin/#some-objects-aren-t-appearing-in-the-admin)
    - [管理インターフェイスの機能をカスタマイズしたい場合にはどうすればいいですか？](/ja/5.2/faq/admin/#how-can-i-customize-the-functionality-of-the-admin-interface)
    - [動的に生成された管理サイトが見にくいのですが、どうすれば修正できますか？](/ja/5.2/faq/admin/#the-dynamically-generated-admin-site-is-ugly-how-can-i-change-it)
    - [管理サイトをサポートしているブラウザを教えてください。](/ja/5.2/faq/admin/#what-browsers-are-supported-for-using-the-admin)
    - [管理画面を使う上で、どのような支援技術がサポートされていますか？](/ja/5.2/faq/admin/#what-assistive-technologies-are-supported-for-using-the-admin)
  - [FAQ: コードへの貢献](/ja/5.2/faq/contributing/)

    - [Django のコードに貢献し始めるにはどうすればいいですか？](/ja/5.2/faq/contributing/#how-can-i-get-started-contributing-code-to-django)
    - [数週間前にバグ修正を提出したのですが、なぜ私の貢献は無視されているのでしょうか？](/ja/5.2/faq/contributing/#i-submitted-a-bug-fix-several-weeks-ago-why-are-you-ignoring-my-contribution)
    - [反映してほしい変更があるときは、いつ、どうやってチームにリマインドするのがよいですか？](/ja/5.2/faq/contributing/#when-and-how-might-i-remind-the-team-of-a-change-i-care-about)
    - [でも、何度もリマインドしたのに、私の貢献は無視され続けています！](/ja/5.2/faq/contributing/#but-i-ve-reminded-you-several-times-and-you-keep-ignoring-my-contribution)
    - [私のチケットは完全に100％完璧だと確信しています、しかし自分で「チェックインの準備ができました」とマークすることはできますか？](/ja/5.2/faq/contributing/#i-m-sure-my-ticket-is-absolutely-100-perfect-can-i-mark-it-as-ready-for-checkin-myself)
  - [トラブルシューティング](/ja/5.2/faq/troubleshooting/)

    - [`django-admin` 実行時の問題](/ja/5.2/faq/troubleshooting/#problems-running-django-admin)
    - [その他](/ja/5.2/faq/troubleshooting/#miscellaneous)
- [API リファレンス](/ja/5.2/ref/)

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

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

    - [API リファレンス](/ja/5.2/ref/checks/#api-reference)
    - [組み込みタグ](/ja/5.2/ref/checks/#builtin-tags)
    - [コアシステムチェック](/ja/5.2/ref/checks/#core-system-checks)
    - [`contrib` アプリのチェック](/ja/5.2/ref/checks/#contrib-app-checks)
  - [ビルトインのクラスベースビュー API](/ja/5.2/ref/class-based-views/)

    - [ベース・ビュー](/ja/5.2/ref/class-based-views/base/)
    - [ジェネリック表示ビュー (Generic display view)](/ja/5.2/ref/class-based-views/generic-display/)
    - [ジェネリック編集ビュー (Generic editing view)](/ja/5.2/ref/class-based-views/generic-editing/)
    - [ジェネリック日付ビュー](/ja/5.2/ref/class-based-views/generic-date-based/)
    - [クラスベースビューのミックスイン (mixin)](/ja/5.2/ref/class-based-views/mixins/)
    - [クラスベースのジェネリックビュー: フラットインデックス](/ja/5.2/ref/class-based-views/flattened-index/)
    - [仕様](/ja/5.2/ref/class-based-views/#specification)
    - [ベースビュー vs ジェネリックビュー](/ja/5.2/ref/class-based-views/#base-vs-generic-views)
  - [クリックジャッキング対策](/ja/5.2/ref/clickjacking/)

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

    - [Django の admin サイト](/ja/5.2/ref/contrib/admin/)
    - [`django.contrib.auth`](/ja/5.2/ref/contrib/auth/)
    - [contenttypes フレームワーク](/ja/5.2/ref/contrib/contenttypes/)
    - [フラットページ (flatpages) アプリ](/ja/5.2/ref/contrib/flatpages/)
    - [GeoDjango](/ja/5.2/ref/contrib/gis/)
    - [`django.contrib.humanize`](/ja/5.2/ref/contrib/humanize/)
    - [メッセージフレームワーク](/ja/5.2/ref/contrib/messages/)
    - [`django.contrib.postgres`](/ja/5.2/ref/contrib/postgres/)
    - [redirects （リダイレクト）アプリ](/ja/5.2/ref/contrib/redirects/)
    - [サイトマップ・フレームワーク](/ja/5.2/ref/contrib/sitemaps/)
    - ["sites" フレームワーク](/ja/5.2/ref/contrib/sites/)
    - [`staticfiles` アプリ](/ja/5.2/ref/contrib/staticfiles/)
    - [配信 (syndication) フィード フレームワーク](/ja/5.2/ref/contrib/syndication/)
    - [`admin`](/ja/5.2/ref/contrib/#admin)
    - [`auth`](/ja/5.2/ref/contrib/#auth)
    - [`contenttypes`](/ja/5.2/ref/contrib/#contenttypes)
    - [`flatpages`](/ja/5.2/ref/contrib/#flatpages)
    - [`gis`](/ja/5.2/ref/contrib/#gis)
    - [`humanize`](/ja/5.2/ref/contrib/#humanize)
    - [`messages`](/ja/5.2/ref/contrib/#messages)
    - [`postgres`](/ja/5.2/ref/contrib/#postgres)
    - [`redirects`](/ja/5.2/ref/contrib/#redirects)
    - [`sessions`](/ja/5.2/ref/contrib/#sessions)
    - [`sites`](/ja/5.2/ref/contrib/#sites)
    - [`sitemaps`](/ja/5.2/ref/contrib/#sitemaps)
    - [`syndication`](/ja/5.2/ref/contrib/#syndication)
  - [クロスサイトリクエストフォージェリ (CSRF) 対策](/ja/5.2/ref/csrf/)

    - [しくみ](/ja/5.2/ref/csrf/#how-it-works)
    - [制限事項](/ja/5.2/ref/csrf/#limitations)
    - [ユーティリティ](/ja/5.2/ref/csrf/#module-django.views.decorators.csrf)
    - [設定](/ja/5.2/ref/csrf/#settings)
    - [よくある質問](/ja/5.2/ref/csrf/#frequently-asked-questions)
  - [データベース](/ja/5.2/ref/databases/)

    - [一般的なメモ](/ja/5.2/ref/databases/#general-notes)
    - [PostgreSQL に関するノート](/ja/5.2/ref/databases/#postgresql-notes)
    - [MariaDB に関するノート](/ja/5.2/ref/databases/#mariadb-notes)
    - [MySQL に関するノート](/ja/5.2/ref/databases/#mysql-notes)
    - [SQLite に関するノート](/ja/5.2/ref/databases/#sqlite-notes)
    - [Oracle に関するノート](/ja/5.2/ref/databases/#oracle-notes)
    - [組み込みデータベース・バックエンドをサブクラス化する](/ja/5.2/ref/databases/#subclassing-the-built-in-database-backends)
    - [サードパーティのデータベース・バックエンドを使う](/ja/5.2/ref/databases/#using-a-3rd-party-database-backend)
  - [`django-admin` と `manage.py`](/ja/5.2/ref/django-admin/)

    - [使い方](/ja/5.2/ref/django-admin/#usage)
    - [利用可能なコマンド](/ja/5.2/ref/django-admin/#available-commands)
    - [アプリケーションが提供するコマンド](/ja/5.2/ref/django-admin/#commands-provided-by-applications)
    - [デフォルトのオプション](/ja/5.2/ref/django-admin/#default-options)
    - [追加の便利機能](/ja/5.2/ref/django-admin/#extra-niceties)
  - [コードから管理コマンドを実行する](/ja/5.2/ref/django-admin/#running-management-commands-from-your-code)

    - [出力のリダイレクト](/ja/5.2/ref/django-admin/#output-redirection)
  - [Django の例外](/ja/5.2/ref/exceptions/)

    - [Django Core 例外](/ja/5.2/ref/exceptions/#module-django.core.exceptions)
    - [URL Resolver の例外](/ja/5.2/ref/exceptions/#url-resolver-exceptions)
    - [データベースの例外](/ja/5.2/ref/exceptions/#database-exceptions)
    - [HTTP 例外](/ja/5.2/ref/exceptions/#http-exceptions)
    - [セッションの例外](/ja/5.2/ref/exceptions/#sessions-exceptions)
    - [トランザクションの例外](/ja/5.2/ref/exceptions/#transaction-exceptions)
    - [テストフレームワークの例外](/ja/5.2/ref/exceptions/#testing-framework-exceptions)
    - [Python の例外](/ja/5.2/ref/exceptions/#python-exceptions)
  - [ファイルの取り扱い](/ja/5.2/ref/files/)

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

    - [フォーム API](/ja/5.2/ref/forms/api/)
    - [フォーム フィールド](/ja/5.2/ref/forms/fields/)
    - [モデルフォーム](/ja/5.2/ref/forms/models/)
    - [フォームセット (Formset) の関数](/ja/5.2/ref/forms/formsets/)
    - [フォームレンダリング API](/ja/5.2/ref/forms/renderers/)
    - [ウィジェット](/ja/5.2/ref/forms/widgets/)
    - [フォームとフィールドのバリデーション](/ja/5.2/ref/forms/validation/)
  - [ロギング](/ja/5.2/ref/logging/)

    - [Django のデフォルトのロギング設定](/ja/5.2/ref/logging/#django-s-default-logging-configuration)
    - [Django のロギング拡張](/ja/5.2/ref/logging/#django-logging-extensions)
  - [ミドルウェア](/ja/5.2/ref/middleware/)

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

    - [スキーマ・オペレーション](/ja/5.2/ref/migration-operations/#schema-operations)
    - [特別なオペレーション](/ja/5.2/ref/migration-operations/#special-operations)
    - [オペレーション・カテゴリ](/ja/5.2/ref/migration-operations/#operation-category)
    - [独自のオペレーションを書く](/ja/5.2/ref/migration-operations/#writing-your-own)
  - [モデル](/ja/5.2/ref/models/)

    - [モデルフィールドリファレンス](/ja/5.2/ref/models/fields/)
    - [フィールド属性 リファレンス](/ja/5.2/ref/models/fields/#field-attribute-reference)
    - [モデル index リファレンス](/ja/5.2/ref/models/indexes/)
    - [制約 (Constraint) リファレンス](/ja/5.2/ref/models/constraints/)
    - [モデル `_meta` API](/ja/5.2/ref/models/meta/)
    - [リレーション先オブジェクトのリファレンス](/ja/5.2/ref/models/relations/)
    - [Model クラスのリファレンス](/ja/5.2/ref/models/class/)
    - [モデルの `Meta` オプション](/ja/5.2/ref/models/options/)
    - [モデルインスタンスリファレンス](/ja/5.2/ref/models/instances/)
    - [`QuerySet` API リファレンス](/ja/5.2/ref/models/querysets/)
    - [ルックアップ API リファレンス](/ja/5.2/ref/models/lookups/)
    - [クエリ式 (Query Expression)](/ja/5.2/ref/models/expressions/)
    - [条件式](/ja/5.2/ref/models/conditional-expressions/)
    - [データベース関数](/ja/5.2/ref/models/database-functions/)
  - [ページ分割 (Paginator)](/ja/5.2/ref/paginator/)

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

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

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

    - [コアの設定](/ja/5.2/ref/settings/#core-settings)
    - [認証](/ja/5.2/ref/settings/#auth)
    - [メッセージ](/ja/5.2/ref/settings/#messages)
    - [セッション](/ja/5.2/ref/settings/#sessions)
    - [サイト](/ja/5.2/ref/settings/#sites)
    - [静的ファイル](/ja/5.2/ref/settings/#static-files)
    - [コア設定 トピック別インデックス](/ja/5.2/ref/settings/#core-settings-topical-index)
  - [シグナル](/ja/5.2/ref/signals/)

    - [モデルのシグナル](/ja/5.2/ref/signals/#module-django.db.models.signals)
    - [管理シグナル](/ja/5.2/ref/signals/#management-signals)
    - [リクエスト/レスポンス シグナル](/ja/5.2/ref/signals/#module-django.core.signals)
    - [テストシグナル](/ja/5.2/ref/signals/#module-django.test.signals)
    - [データベースラッパー](/ja/5.2/ref/signals/#module-django.db.backends)
  - [テンプレート](/ja/5.2/ref/templates/)

    - [Django テンプレート言語](/ja/5.2/ref/templates/language/)
    - [組み込みテンプレートタグとフィルタ](/ja/5.2/ref/templates/builtins/)
    - [Python プログラマーのための Django テンプレート言語](/ja/5.2/ref/templates/api/)
  - [`TemplateResponse` および `SimpleTemplateResponse`](/ja/5.2/ref/template-response/)

    - [`SimpleTemplateResponse` オブジェクト](/ja/5.2/ref/template-response/#simpletemplateresponse-objects)
    - [`TemplateResponse` オブジェクト](/ja/5.2/ref/template-response/#templateresponse-objects)
    - [レンダリングプロセス](/ja/5.2/ref/template-response/#the-rendering-process)
    - [`TemplateResponse` および `SimpleTemplateResponse` を使用する](/ja/5.2/ref/template-response/#using-templateresponse-and-simpletemplateresponse)
  - [Unicode データ](/ja/5.2/ref/unicode/)

    - [データベースの作成](/ja/5.2/ref/unicode/#creating-the-database)
    - [一般的な文字列操作](/ja/5.2/ref/unicode/#general-string-handling)
    - [モデル](/ja/5.2/ref/unicode/#models)
    - [テンプレート](/ja/5.2/ref/unicode/#templates)
    - [ファイル](/ja/5.2/ref/unicode/#files)
    - [フォームの送信](/ja/5.2/ref/unicode/#form-submission)
  - [`django.urls` ユーティリティ関数](/ja/5.2/ref/urlresolvers/)

    - [`reverse()`](/ja/5.2/ref/urlresolvers/#reverse)
    - [`reverse_lazy()`](/ja/5.2/ref/urlresolvers/#reverse-lazy)
    - [`resolve()`](/ja/5.2/ref/urlresolvers/#resolve)
    - [`get_script_prefix()`](/ja/5.2/ref/urlresolvers/#get-script-prefix)
  - [URLconf で使用するための `django.urls` 関数](/ja/5.2/ref/urls/)

    - [`path()`](/ja/5.2/ref/urls/#path)
    - [`re_path()`](/ja/5.2/ref/urls/#re-path)
    - [`include()`](/ja/5.2/ref/urls/#include)
    - [`register_converter()`](/ja/5.2/ref/urls/#register-converter)
  - [URLconf で使用するための `django.conf.urls` の関数](/ja/5.2/ref/urls/#module-django.conf.urls)

    - [`static()`](/ja/5.2/ref/urls/#static)
    - [`handler400`](/ja/5.2/ref/urls/#handler400)
    - [`handler403`](/ja/5.2/ref/urls/#handler403)
    - [`handler404`](/ja/5.2/ref/urls/#handler404)
    - [`handler500`](/ja/5.2/ref/urls/#handler500)
  - [Django ユーティリティ (`django.utils`)](/ja/5.2/ref/utils/)

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

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

    - [開発中のファイルの配信](/ja/5.2/ref/views/#serving-files-in-development)
    - [エラー・ビュー](/ja/5.2/ref/views/#error-views)
- [メタドキュメントとその他](/ja/5.2/misc/)

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

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

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

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

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

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

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

    - [Communication channels](/ja/5.2/internals/contributing/#communication-channels)
    - [さぁ始めましょう](/ja/5.2/internals/contributing/#getting-started)
    - [Django フレームワークでの作業](/ja/5.2/internals/contributing/#work-on-the-django-framework)
    - [Other ways of contributing](/ja/5.2/internals/contributing/#other-ways-of-contributing)
  - [メーリングリストとフォーラム](/ja/5.2/internals/mailing-lists/)

    - [Django フォーラム](/ja/5.2/internals/mailing-lists/#django-forum)
    - [`django-announce`](/ja/5.2/internals/mailing-lists/#django-announce)
    - [`django-updates`](/ja/5.2/internals/mailing-lists/#django-updates)
    - [Archived mailing lists](/ja/5.2/internals/mailing-lists/#archived-mailing-lists)
  - [Django プロジェクトの組織](/ja/5.2/internals/organization/)

    - [原則](/ja/5.2/internals/organization/#principles)
    - [マージャー](/ja/5.2/internals/organization/#mergers)
    - [リリース担当者 (Releasers)](/ja/5.2/internals/organization/#releasers)
    - [運営委員会](/ja/5.2/internals/organization/#steering-council)
    - [組織の変更](/ja/5.2/internals/organization/#changing-the-organization)
  - [Django のセキュリティポリシー](/ja/5.2/internals/security/)

    - [セキュリティ問題の報告](/ja/5.2/internals/security/#reporting-security-issues)
    - [How does Django evaluate a report](/ja/5.2/internals/security/#how-does-django-evaluate-a-report)
    - [サポートバージョン](/ja/5.2/internals/security/#supported-versions)
    - [Security issue severity levels](/ja/5.2/internals/security/#security-issue-severity-levels)
    - [Django のセキュリティ問題の公開プロセス](/ja/5.2/internals/security/#how-django-discloses-security-issues)
    - [事前通知を受け取る対象者](/ja/5.2/internals/security/#who-receives-advance-notification)
    - [通知のリクエスト](/ja/5.2/internals/security/#requesting-notifications)
  - [Django のリリースプロセス](/ja/5.2/internals/release-process/)

    - [公式リリース](/ja/5.2/internals/release-process/#official-releases)
    - [リリース周期](/ja/5.2/internals/release-process/#release-cadence)
    - [非推奨のポリシー](/ja/5.2/internals/release-process/#deprecation-policy)
    - [サポートバージョン](/ja/5.2/internals/release-process/#supported-versions)
    - [リリースプロセス](/ja/5.2/internals/release-process/#release-process)
  - [Django の機能廃止のタイムライン](/ja/5.2/internals/deprecation/)

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

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

    - [オーバービュー](/ja/5.2/internals/howto-release-django/#overview)
    - [Prerequisites](/ja/5.2/internals/howto-release-django/#prerequisites)
    - [Pre-release tasks](/ja/5.2/internals/howto-release-django/#pre-release-tasks)
    - [Feature freeze tasks](/ja/5.2/internals/howto-release-django/#feature-freeze-tasks)
    - [Actually rolling the release](/ja/5.2/internals/howto-release-django/#actually-rolling-the-release)
    - [Making the release(s) available to the public](/ja/5.2/internals/howto-release-django/#making-the-release-s-available-to-the-public)
    - [Post-release](/ja/5.2/internals/howto-release-django/#post-release)
    - [Notes on setting the VERSION tuple](/ja/5.2/internals/howto-release-django/#notes-on-setting-the-version-tuple)

## 索引、用語集、表

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