Concept Flow - View base class
Request received
View base class dispatch
Determine HTTP method
Call get() method
Call post() method
Call corresponding method or 405
Return HttpResponse
The View base class receives a request, checks its HTTP method, calls the matching method like get() or post(), then returns a response.