I have a HTML form
<form>
<select id="lr_action" name="lr_action">
<option value="CENTER">Center</option>
<option value="LEFT">Left</option>
<option value="RIGHT">Right</option>
</select>
</form>
Is there a way I can receive and set the value of this 'select' dropdown in views.py (where I load my main HTML page) without using Django forms class. I am looking for a easy equivalent for the js attribute 'getElementById'.
Thank you