index.txt 495 B

12345678910111213141516171819
  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.
  8. .. toctree::
  9. :maxdepth: 2
  10. builtins
  11. api
  12. .. seealso::
  13. For information on writing your own custom tags and filters, see
  14. :doc:`/howto/custom-template-tags`.