Chapter 4. Create CRUD Web Application
This chapter covers how to make a basic CRUD web application using the Django framework.
The following lessons are covered in this chapter.
Lessons in this chapter
- CRUD Web Application
- Basic CRUD Structure in Django
- Django Generic Views
- How To Write Class-Based Views with Generic Views
- Generic View Basic Attributes
- URL Dispatcher for CRUD Views
- Django Templates for CRUD Views
- Django Template Language (DTL)
- Template for List Page
- get_FOO_display method
- Template for Detail Page
- Template with Model Relations
- Template for Create and Update Page
- Template for Delete Page
- Add Links – {% url %} tag
- Extend Templates – {% extends %} tag
- Check Developing App UI on Mobile Device
- Django Templates with Bootstrap
- Crispy Forms
- Customize Views (1) – Change List Order
- Customizing Views (2) – Filter Lists
- Context
- Customize Views (3) – Add Extra Context
- Modularize Templates – {% include %} tag
- Static Files in Development Environment – {% static %} tag
- STATIC_URL and STATICFILES_DIRS
- Create Index HTML