Content
The book starts out by explaining the syntax of the template system and illustrating how it fits into the big picture of handling requests in Django. The following two chapters then go into more detail about how URLs are mapped to views, views are structured and values are passed to the templates.
Chapter 4 is a reference of all built-in Tags and Filters. The author decided to include it because the online documentation didn’t provide examples of usage and syntax for all of them.
The next two chapters focus on template configuration, loading and inheritance. After an explanation of template loaders and the idea behind the extends- and block-tag the author goes on to show how alternative templates can be served by using template overrides and custom Middleware.
Finally, there are chapters on pagination, customizing the admin, caching and internationalization. Except for the, very detailed, pagination chapter the other don't go into as much depth as the online documentation but nonetheless provide a good overview of the basics. For example, the chapter about Internationalization only shows how strings in templates can be marked as translatable and message files can be generated. It still doesn’t go into as much depth as the online documentation about i18n.