This Stackoverflow post says:
W3C has tended towards lowercase for attribute names and values for a while
i.e. use something like
<form method="post" />
However, in a Django view, the method name is compared with an uppercase string
if request.method == 'POST': # If the form has been submitted...
Why are the cases mixed up here ? Is the browser converting 'post' to uppercase for Django?