Symfony
Symfony
*” --webapp
****************************************************************************
<table border=4>
<tr>
<td>Id</td>
<td>Username</td>
</tr>
{% for author in authors %}
<tr>
<td>{{ author.id }} </td>
<td>{{ author.username | upper }} </td>
<td><img src="{{asset(author.picture)}} alt="Author Picture"></td>
</tr>
{% endfor %}
</table>
*****************************************************************************