if I have the following html:
<form method ='GET' action='/search'>
<input type='checkbox' name='box1' id='box1'> Option 1
<input type='checkbox' name='box2' id='box2'> Option 2
<input type='submit'>
</form>
How could I know whether one of the checkbox was selected (TRUE/FALSE) in python/django? I am writing an app in Django and I would like to show a specific result depending on which checkboxes were selected.
Many thanks in advance!