Suppose I have a 'question' model with two fields - title and content
Now think of question creation form. Using django forms I can display it to template and validate using is_valid method.
But I don't want to use django inbuilt forms. I want to write my forms in handwritten html and send it to server using POST method.
How will validation and saving to database will work in this case?
I am doing something similar to this guy but I am not satisfied with the existing answers