how can i get all cell values from table in volt view
below is my code
{% for table in page.items %}
{% if loop.first %}
<table class="table table-bordered table-striped" align="center" border=2 id="data">
<thead>
<tr>
<th>Id</th>
<th> NAME</th>
<th>role</th>
</tr>
</thead>
<tbody>
{% endif %}
<tr>
<td>{{ table.id }}</td>
<td>{{ table.name }}</td>
<td> {% for element in role %}
{{ element }}
{% endfor %} </td>
<td width="7%">{{  radio_field("access", "value": "grant") }}   Grant  </td>
<td width="7%">{{  radio_field("access", "value": "deny") }}   Deny  </td>              
    </tr>
{% if loop.last %}
</tbody>    </table> {% endif %} {% else %} No products are recorded {% endfor %}
......how can i get these cell values to controller from the view