Book Image

Django 1.0 Template Development

Book Image

Django 1.0 Template Development

Overview of this book

Table of Contents (17 chapters)
Django 1.0 Template Development
Credits
About the Author
About the Reviewers
Preface
Index

Chapter 9. Customizing the Admin Look and Feel

The automatic admin application (aka "the admin") is an amazing feature of Django that saves countless hours of routine development work. To add that extra "finishing touch" to your application, you may want to change the color scheme of the admin pages to match your site, change some of the default page headers, and add outside links to the admin dashboard.

In this chapter, we will:

  • Explore how admin templates are structured

  • Override the necessary templates to customize the appearance of the admin

  • Change the default header of the admin pages

  • Add navigation links to the top of the admin page

  • Add an additional box of links to the admin dashboard

  • Override the admin stylesheet to match your site's color scheme

    Note

    We're will not talk about how to change the functionality of the admin, since that's thoroughly documented in Django's online documentation. We're going to look at how to make the admin appear with the same look and feel as the rest of your...