I\'m want to create one page with a form, and every time I submit the form it adds an item to the list below the form.
I can make it work using 2 pages:
Do not mix list and update views.
Instead, create two separate views for these tasks:
List view displays the list and a web form with action URL pointing to the create view.
Create view accepts POST data and
Also I've tried to use class-based views and found that they are too complex.
I think it is much easier to use old-style function views.