---
title: "テンプレート"
version: 4.1
locale: ja
source: https://docs.djangoproject.com/ja/4.1/ref/templates/
canonical: https://djangodocs.dev/ja/4.1/ref/templates/
---
# テンプレート

Django's template engine provides a powerful mini-language for defining the
user-facing layer of your application, encouraging a clean separation of
application and presentation logic. Templates can be maintained by anyone with
an understanding of HTML; no knowledge of Python is required. For introductory
material, see [テンプレート](/ja/4.1/topics/templates/) topic guide.

- [The Django Template Language](/ja/4.1/ref/templates/language/)

  - [テンプレート](/ja/4.1/ref/templates/language/#templates)
  - [変数](/ja/4.1/ref/templates/language/#variables)
  - [フィルター](/ja/4.1/ref/templates/language/#filters)
  - [タグ](/ja/4.1/ref/templates/language/#tags)
  - [コメント](/ja/4.1/ref/templates/language/#comments)
  - [テンプレートの継承](/ja/4.1/ref/templates/language/#template-inheritance)
  - [HTML の自動エスケープ](/ja/4.1/ref/templates/language/#automatic-html-escaping)
  - [メソッドへのアクセス](/ja/4.1/ref/templates/language/#accessing-method-calls)
  - [カスタムタグとカスタムフィルタのライブラリ](/ja/4.1/ref/templates/language/#custom-tag-and-filter-libraries)
- [組み込みタグとフィルタ](/ja/4.1/ref/templates/builtins/)

  - [組み込みタグリファレンス](/ja/4.1/ref/templates/builtins/#built-in-tag-reference)
  - [組み込みフィルタリファレンス](/ja/4.1/ref/templates/builtins/#built-in-filter-reference)
  - [国際化タグとフィルタ](/ja/4.1/ref/templates/builtins/#internationalization-tags-and-filters)
  - [その他のタグとフィルタライブラリ](/ja/4.1/ref/templates/builtins/#other-tags-and-filters-libraries)
- [The Django template language: for Python programmers](/ja/4.1/ref/templates/api/)

  - [オーバービュー](/ja/4.1/ref/templates/api/#overview)
  - [Configuring an engine](/ja/4.1/ref/templates/api/#configuring-an-engine)
  - [Loading a template](/ja/4.1/ref/templates/api/#loading-a-template)
  - [Rendering a context](/ja/4.1/ref/templates/api/#rendering-a-context)
  - [Playing with `Context` objects](/ja/4.1/ref/templates/api/#playing-with-context-objects)
  - [Loading templates](/ja/4.1/ref/templates/api/#loading-templates)
  - [Custom loaders](/ja/4.1/ref/templates/api/#custom-loaders)
  - [Template origin](/ja/4.1/ref/templates/api/#template-origin)

> **See also**
>
> For information on writing your own custom tags and filters, see
> [How to create custom template tags and filters](/ja/4.1/howto/custom-template-tags/).
>
> To learn how to override templates in other Django applications, see
> [How to override templates](/ja/4.1/howto/overriding-templates/).
