1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
<table>
<tr>
<td width="300"> <h2>
Nom : {{entity.user.lastname}} <br>
Prenom : {{entity.user.firstname}} <br> </h2> </td>
<td width="100" style="height: 50px;"> </td>
<td width="300" style="text-align:center;"> <img src="{{ url('barcode_generation', { 'type': 'code128', 'code' : entity.id }) }}" border="0" alt="barcode to this page" style="height: 50px; width: 300px;"> <br> <b>{{entity.id}}</b> </td>
</tr>
</table>
{% if entity.user.civility == 1%}
Cher {{entity.user.firstname}}, <br><br>
{%endif%}
{% if entity.user.civility == 2%}
Chère {{entity.user.firstname}}, <br><br>
{%endif%} |
Partager