Django 1.0 Template Development
Formats:
save 30%!
save 37%!
Free Shipping!
| Also available on: |
|
- Dive into Django's template system and build your own template
- Learn to use built-in tags and filters in Django 1.0
- Practical tips for project setup and template structure
- Use template techniques to improve your application's performance
Book Details
Language : EnglishPaperback : 272 pages [ 235mm x 191mm ]
Release Date : December 2008
ISBN : 1847195709
ISBN 13 : 9781847195708
Author(s) : Scott Newman
Topics and Technologies : All Books, Open Source, Web Development
Table of Contents
Preface
Chapter 1: An Introduction to the Django Template System
Chapter 2: Views, URLs, and Generic Views
Chapter 3: Template Context
Chapter 4: Using the Built-In Tags and Filters
Chapter 5: Loading and Inheriting Templates
Chapter 6: Serving Multiple Templates
Chapter 7: Custom Tags and Filters
Chapter 8: Pagination
Chapter 9: Customizing the Admin Look and Feel
Chapter 10: Caching Your Pages
Chapter 11: Internationalization
Index
Scott Newman
Code Downloads
Download the code and support files for this book.
Submit Errata
Please let us know if you have found any errors not listed on this list by completing our errata submission form. Our editors will check them and add them to this list. Thank you.
Errata
- 7 submitted: last submission 04 Mar 2013Errata type: Code | Page number: 95
The example for the urlencode filter uses 'urlize' instead of 'urlencode' The line should read: Apply the filter: {{ myvalue|urlencode }}
Errata type: Code | Page number: 45
'template': 'robots.txt'}), is missing a brace and should read {'template': 'robots.txt'}),
Errata type: Code | Page number: 63
The first sentence of the first section references django.shortcuts.render_to_string, which is incorrect. The render_to_string function is found at django.template.loader.render_to_string. The sentence should read: Django also provides a shortcut at django.template.loader.render_to_string to render the template...
Errata type: Code | Page number: 45
The line above the image should should read : Point your browser to the URL http://localhost:8000/robots/txt. instead of: Point your browser to the URL http://localhost:8000/robots.txt/.
Errata type: Typo | Page number: 195
In the 'Warning', it should be 'get_list_or_404', not 'get_object_or_404'
Errata type: Code | Page number: 170
Half way down the page, it says: "We added the {% load filtertag_extras %} line..." It should be: "We added the {% load filtertest_extras %} line..."
Errata type: Typo | Page number: 219
Last paragraph: "the links will have been worked out" should be "the kinks will have been worked out"
Sample chapters
You can view our sample chapters and prefaces of this title on PacktLib or download sample chapters in PDF format.
- Meet the Django template system and understand how it works
- Understand URL configurations, views, and generic views and streamline your project's development
- Master built-in tags and filters to use them efficiently in your project
- Split your output into manageable pieces using pagination libraries
- Extend your templates through inheritance
- Customize the look of the admin interface as you like to administer your website with ease
- Create and deploy custom tags and filters according to your needs
- Internationalize your templates to present your site in multiple languages from the same template files
- Improve your site's performance by using the cache framework
- Serve multiple sets of templates from the same project easily
Chapter 1 gives you an introduction to the Django template system and provides an overview of how it works.
Chapter 2 explores how URL configuration routes your requests to views and generic views. You will understand how to use generic views to streamline your project's development.
Chapter 3 explains how data from your views is exposed to the template system via the template context.
Chapter 4 reviews all of Django's built-in tags and filters, each with examples and usage notes.
Chapter 5 uses extension and inheritance to create a modular skeleton for your project's templates.
Chapter 6 teaches you how to serve multiple versions of your templates in a single Django project. You will create mobile and traditional templates and learn how to serve them from the same views.
Chapter 7 teaches you how to use Django's pagination libraries to split the output of your applications into pages and provide navigation between them.
Chapter 8 explains how to extend the template system by writing your own template tags and filters.
Chapter 9 uses internationalization to automatically serve your site templates in multiple languages based on the user's preferences.
Chapter 10 shows you how to customize the look and feel of the automatic admin application by editing some templates and creating custom CSS rules.
Chapter 11 teaches you to use the cache framework to optimize the speed and performance of your project.
Django is a high-level Python web application framework designed to support the rapid development of dynamic websites, web applications, and web services. Getting the most out of its template system allows programmers and designers to easily and efficiently output their content in a flexible, extendable, and maintainable manner.
This book will help you to master the Django template system. Built-in template tags and filters are explained with examples and usage notes, as well as information on building custom tags and filters to extend the system for your needs. You will learn to use inheritance to create modular templates that are easy to maintain. You will learn how to serve multiple templates from within the same Django project, with an example of how to serve different templates for a mobile version of your site without having to change any code in your views. Pagination, internationalization, caching, and customization of the automatic admin application are also covered.
A comprehensive, practical exploration of the usage and customization of Django's template system, including tutorials on pagination, caching, and internationalization.
This book is designed for readers who learn by doing and employs many examples and screenshots to let the reader dig in and start coding. This book isn't designed to be a reference; instead it has a practical, example-driven approach that teaches you by following along with the examples in the chapters.
When you have completed this book, you will fully understand how the template system works, how to extend it when you have specialized needs, and how to optimize the performance and usability of your content.
This book is for web developers and template authors who want to fully understand and utilize the Django template system. The reader should have completed the introductory tutorials on the Django project's website and some experience with the framework will be very helpful. Basic knowledge of Python and HTML is assumed.

