Suppose I have a template
<input type="text" name="text" id="{{product.id}}" > How can I get the id value of this input in views.py? For example, to write id in args['id_input'] I can get the value field:
args['id_input']=request.POST.get("text", "") And how to get the id field?