Book Image

Learning Website Development with Django

Book Image

Learning Website Development with Django

Overview of this book

Table of Contents (18 chapters)
Learning Website Development with Django
Credits
About the Author
About the Reviewers
Preface
Index

Chapter 12. What Next?

In this book, we went through the process of building a social bookmarking application from the ground up using Django as our framework. We covered a lot of topics related to Web 2.0 and social applications, as well as many Django components. Although the tutorial is finished, there are some Django elements that weren't discussed in the book. This chapter serves as an overview of those elements. It only gives brief introductions and does not go into details, but you can always refer to the online documentation of Django if you want to learn more about a particular feature or component. The idea behind this chapter is to tell you about what is available, so that you know what aspect to research if you need to implement a feature that wasn't covered in the book.

In this chapter, you will learn about the following:

  • The following Django features:

    • Custom template tags and filters.

    • Model managers and custom SQL.

    • Generic views.

    • Some components from the Django standard library...