Thanks for the fast reply. sorry i wasn't clearer on my previous post. If annything is still not documentated enough please let me know.
i'll give some code snippets of my template. no data is loaded into this page. the user has to fill in a few fields and after that we want to store it to our database.
<div id="diagnoses_zelf" class="span5 well">
<form >
<h5>Diagnoses</h5>
<table id="tableDiagnose" class="table table-hover">
<thead class="header">
<tr>
<th>Nr.</th>
<th>Code</th>
<th>Uitleg</th>
<th>Zek</th>
<th>Aan</th>
</tr>
</thead>
<tr>
<td>A</td>
<td><input type='text' id="dz_code" class="input-mini" onFocus="isleegveld(this.value)" onchange="voegrijtoe_Diagnose(this.value)" placeholder="Code"></input></td>
<td style="max-width: 140px; word-wrap: break-word">some random text</td>
<td><input type='text' id="dz_zek" class="input-mini1" ></input></td>
<td><input type='text' id="dz_aan" class="input-mini1" ></input></td>
</tr>
</table>
</form>
</div>
every time the user has filled in the dz_code textfield, annother textfield will appear beneeth it. (using javascript)
I'd like to get all the data of this table into a list. each row is a medical file of a patient and should be placed in a table "medical files".
To bring it to our database I understood I need to bring this list to a view in our views.py so we can send it to the database.