Top "Django-class-based-views" questions

Django Class-based Views are Django views that are represented as classes.

How do I filter tables with Django generic views?

I am trying to create a table view with pagination, sorting, and filtering, using the most common/standard/recommended approach …

django django-class-based-views django-tables2 django-filter
TypeError: post() got an unexpected keyword argument

I am trying to create a simple blog where I can communicate with the users directly. Each user will have …

django django-models django-class-based-views
How to add a cancel button to DeleteView in django

What's the best way to add a "cancel" button to a generic class-based view in Django? In the example below, …

django django-class-based-views
Multiple form classes in django generic (class) views

I'd like to use the class based generic views of django 1.3 for forms, but sometimes have to manage multiple form …

django django-forms django-views django-class-based-views
Accessing a context object in a Django class-based generic view

I'm using a DetailView to view a Project object, and I would like to be able to access the Project …

django django-generic-views django-class-based-views
What is the advantage of Class-Based views?

I read today that Django 1.3 alpha is shipping, and the most touted new feature is the introduction of class-based views. …

django django-class-based-views
Using Django Login Required Mixin

I have a class based view which I would like to make accessible only when a user is logged in, …

django django-class-based-views
django class-based view - UpdateView - How to access the request user while processing a form?

In a class-base UpdateView in Django, I exclude the user field as it is internal to the system and I …

django django-class-based-views
Django CreateView is not saving object

I'm practicing django Class-Based-View with a basic blog application. For some reason, however, the CreateView for my Post model is …

python django django-class-based-views