2
0

index.txt 690 B

123456789101112131415161718192021222324
  1. =========
  2. Templates
  3. =========
  4. Django's template engine provides a powerful mini-language for defining the
  5. user-facing layer of your application, encouraging a clean separation of
  6. application and presentation logic. Templates can be maintained by anyone with
  7. an understanding of HTML; no knowledge of Python is required. For introductory
  8. material, see :doc:`/topics/templates` topic guide.
  9. .. toctree::
  10. :maxdepth: 2
  11. language
  12. builtins
  13. api
  14. .. seealso::
  15. For information on writing your own custom tags and filters, see
  16. :doc:`/howto/custom-template-tags`.
  17. To learn how to override templates in other Django applications, see
  18. :doc:`/howto/overriding-templates`.