index.txt 520 B

123456789101112131415161718192021
  1. .. _ref-templates-index:
  2. =========
  3. Templates
  4. =========
  5. Django's template engine provides a powerful mini-language for defining the
  6. user-facing layer of your application, encouraging a clean separation of
  7. application and presentation logic. Templates can be maintained by anyone with
  8. an understanding of HTML; no knowledge of Python is required.
  9. .. toctree::
  10. :maxdepth: 2
  11. builtins
  12. api
  13. .. seealso::
  14. For information on writing your own custom tags and filters, see
  15. :ref:`howto-custom-template-tags`.