I am newer to Django and wanted clarification on an issue I noticed with HttpRequest. It appears that when you request a page the default request.method is GET. My question is, are all page request GETs be default, unless you specify POST or otherwise?
I had thought that GET was related to submission forms and had to be defined in HTML, but Django views in my project that have no forms or anything show request.method == GET.
I searched google and Django but that did not clarify things for me, if you understand this better please share.
Thanks.