Posts tagged with "cbv"

There are a total of 6 posts.

Exploring Class-Based Views (CBV) Series ⑦ - Utilizing Mixins and Permission Management

Published Jun 11, 2025 by whitedec

Learn how to modularize common functionalities using Django Mixins and automate permission management with LoginRequiredMixin and PermissionRequiredMixin.

#django , #python , #cbv , #mixin , #loginrequiredmixin , #permissionrequiredmixin , #userpassestestmixin , #permission management

Exploring Class-Based Views (CBV) Series ⑥ - How to Use TemplateView & RedirectView

Published Jun 09, 2025 by whitedec

Automate static pages and URL redirection with Django TemplateView and RedirectView. Discover practical view strategies for quick setups without code.

#django , #python , #cbv , #templateview , #redirectview , #static page handling , #url redirection , #code simplification

Exploring Class-Based Views (CBV) Series ⑤ – Implementing CRUD with CreateView, UpdateView, and DeleteView

Published Jun 08, 2025 by whitedec

Automate Django CRUD with CreateView, UpdateView, and DeleteView. Quickly build web apps using generic views to enhance both productivity and code quality.

#django , #python , #cbv , #createview , #updateview , #deleteview , #crud , #modelform , #genericviews , #code reuse