Customize "List view" to show multiple rows per record? (i.e. "Notes: __________") row under field rows? colspan

Is it possible to make each record in list view display like this:

pardon my fake code below…

foreach  record as records{
<tr>
<td>{{doc.id}}</td>
<td>{{doc.name}}</td>
</tr>

<tr colspan=2>
   <td>{{doc.notes}}</td>
</tr>
}

So basically I just want to add a colspan row with a {{doc.notes}} field in it for each record that’s displayed.