i am a beginner in phalcon, How to create a drop down box in a table block and the values in drop down box should be fetched from db...this should be done using volt....can anyone help? below is my code....
<table class="table table-bordered table-striped" align="center">
<thead>
<tr>
<th>Id</th>
<th>ROLE NAME</th>
<th>ASSIGNEE</th>
</tr>
</thead>
<tbody>
{% endif %}
<tr>
<td>{{user.id }}</td>
<td>{{ user.name }}</td>
<td>{{*DROPDOWN LIST*}}</td>
</tr>
{% if loop.last %}
</tbody>
the 3rd colum should show the drop down list