In this chapter, using Django and RESTful APIs, we will design the back-end of our web application. We will build the back-end part of our pizzavspizza web application. Also, we will discuss all the main aspects of the Django web app and implement CRUD operations. By the time you finish this chapter, you would have a working Django web application.
Design your Django app
From the previous chapter, you should remember that the Django project can hold multiple apps, smaller parts of the whole project. Some of them come as default built-ins of Django, and others could ...