Multiple inputs with same name through POST in php
I've looked at this and I was hoping I could get something similar with python and bootstrap but it just shows Nonetype with "key[]" or the last value if I just use "key".
<div class="form-check">
    <label class="form-check-label" tal:repeat="a keys">
        <input type="checkbox" name="key[]" value="${a.id}">${a.name}
    </label>
</div>
Is there a way to do this?
