---
title: "Templat"
version: 3.0
locale: id
source: https://docs.djangoproject.com/id/3.0/ref/templates/
canonical: https://djangodocs.dev/id/3.0/ref/templates/
---
# Templat

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 [Cetakan](/id/3.0/topics/templates/) topic guide.

- [Bahasa cetakan Django](/id/3.0/ref/templates/language/)

  - [Templat](/id/3.0/ref/templates/language/#templates)
  - [Variabel](/id/3.0/ref/templates/language/#variables)
  - [Filter](/id/3.0/ref/templates/language/#filters)
  - [Tag](/id/3.0/ref/templates/language/#tags)
  - [Komentar](/id/3.0/ref/templates/language/#comments)
  - [Template inheritance](/id/3.0/ref/templates/language/#template-inheritance)
  - [Pelolosan HTML otomatis](/id/3.0/ref/templates/language/#automatic-html-escaping)
  - [Mengakses panggilan metode](/id/3.0/ref/templates/language/#accessing-method-calls)
  - [Etiket penyesuaian dan pustaka penyaringan](/id/3.0/ref/templates/language/#custom-tag-and-filter-libraries)
- [Etiket cetakan dan penyaring siap-pakai](/id/3.0/ref/templates/builtins/)

  - [Acuan etiket siap-pakai](/id/3.0/ref/templates/builtins/#built-in-tag-reference)
  - [Petunjuk penyaring siap-pakai](/id/3.0/ref/templates/builtins/#built-in-filter-reference)
  - [Internationalization tags and filters](/id/3.0/ref/templates/builtins/#internationalization-tags-and-filters)
  - [Other tags and filters libraries](/id/3.0/ref/templates/builtins/#other-tags-and-filters-libraries)
- [Bahasa cetakan Django: untuk pemrogram Python](/id/3.0/ref/templates/api/)

  - [Ikhtisar](/id/3.0/ref/templates/api/#overview)
  - [Mengkonfigurasi mesin](/id/3.0/ref/templates/api/#configuring-an-engine)
  - [Memuat sebuah cetakan](/id/3.0/ref/templates/api/#loading-a-template)
  - [Membangun konteks](/id/3.0/ref/templates/api/#rendering-a-context)
  - [Bermain dengan obyek `Context`](/id/3.0/ref/templates/api/#playing-with-context-objects)
  - [Memuat cetakan](/id/3.0/ref/templates/api/#loading-templates)
  - [Pemuat penyesuaian](/id/3.0/ref/templates/api/#custom-loaders)
  - [Cetakan asli](/id/3.0/ref/templates/api/#template-origin)

> **See also**
>
> For information on writing your own custom tags and filters, see
> [Penyesuaian etiket cetakan dan saringan](/id/3.0/howto/custom-template-tags/).
>
> To learn how to override templates in other Django applications, see
> [Menimpa cetakan](/id/3.0/howto/overriding-templates/).
