I am new to django so it could be a very basic problem.
In my django template form, I have put a lot of input fields to fill
like this
<form method="POST">
<input type="text" name="n_1" value="" />
<input type="text" name="n_2" value="" />
<input type="text" name="n_3" value="" />
.
.
.
<input type="text" name="n_ " value="" />
<input type="submit" value="submit" />
</form>
To access all inputs,I can do it one by one like asking request.POST["n_i"]
by varying i in loop.
I am looking to find a way by which I can get all the values in a list or in string and I don't have to look by name of input field.