- Django 3 Web Development Cookbook
- Aidas Bendoraitis Jake Kronika
- 59字
- 2025-04-04 13:15:08
Creating an app with CRUDL functions
In computer science, the CRUDL acronym stands for Create, Read, Update, Delete, and List functions. Many Django projects with interactive functionality will need you to implement all of those functions to manage data on the website. In this recipe, we will see how to create URLs and views for these basic functions.