Django documentationLink to this heading

Everything you need to know about Django.

First stepsLink to this heading

Are you new to Django or to programming? This is the place to start!

Getting helpLink to this heading

Having trouble? We’d like to help!

How the documentation is organizedLink to this heading

Django has a lot of documentation. A high-level overview of how it’s organized will help you know where to look for certain things:

  • Tutorials take you by the hand through a series of steps to create a Web application. Start here if you’re new to Django or Web application development. Also look at the “First steps”.

  • Topic guides discuss key topics and concepts at a fairly high level and provide useful background information and explanation.

  • Reference guides contain technical reference for APIs and other aspects of Django’s machinery. They describe how it works and how to use it but assume that you have a basic understanding of key concepts.

  • How-to guides are recipes. They guide you through the steps involved in addressing key problems and use-cases. They are more advanced than tutorials and assume some knowledge of how Django works.

The model layerLink to this heading

Django provides an abstraction layer (the “models”) for structuring and manipulating the data of your Web application. Learn more about it below:

The view layerLink to this heading

Django has the concept of “views” to encapsulate the logic responsible for processing a user’s request and for returning the response. Find all you need to know about views via the links below:

The template layerLink to this heading

The template layer provides a designer-friendly syntax for rendering the information to be presented to the user. Learn how this syntax can be used by designers and how it can be extended by programmers:

FormsLink to this heading

Django provides a rich framework to facilitate the creation of forms and the manipulation of form data.

The development processLink to this heading

Learn about the various components and tools to help you in the development and testing of Django applications:

The adminLink to this heading

Find all you need to know about the automated admin interface, one of Django’s most popular features:

SecurityLink to this heading

Security is a topic of paramount importance in the development of Web applications and Django provides multiple protection tools and mechanisms:

Internationalization and localizationLink to this heading

Django offers a robust internationalization and localization framework to assist you in the development of applications for multiple languages and world regions:

Performance and optimizationLink to this heading

There are a variety of techniques and tools that can help get your code running more efficiently - faster, and using fewer system resources.

Geographic frameworkLink to this heading

GeoDjango intends to be a world-class geographic Web framework. Its goal is to make it as easy as possible to build GIS Web applications and harness the power of spatially enabled data.

Common Web application toolsLink to this heading

Django offers multiple tools commonly needed in the development of Web applications:

Other core functionalitiesLink to this heading

Learn about some other core functionalities of the Django framework:

The Django open-source projectLink to this heading

Learn about the development process for the Django project itself and about how you can contribute: