Django Template Language (DTL) digunakake kanggo ngasilake HTML kanthi dinamis — templates yaiku file HTML kanthi syntax khusus kanggo nglokasi data, looping, lan kondisional. Kanthi sengaja mbatesi logika ing templates, njaga presentasi kapisah karo logika bisnis (sing kudu ana ing views).
Telu sintaks utama
{{ article.title }}
Author: {{ article.author.name }}
{% if user.is_authenticated %}
Welcome, {{ user.username }}
{% else %}
Log in
{% endif %}
{% for article in articles %}
{{ article.title }}
{% empty %}
No articles yet.
{% endfor %}
{{ name|upper }}
{{ article.body|truncatewords:30 }}
{{ price|floatformat:2 }}
{{ date|date:"Y-m-d" }}
