File indexing completed on 2025-02-02 03:51:59

0001 <html>
0002 <h2>{% i18ncp "The total number of people displayed" "%1 person" "%1 people" contacts|length %}</h2>
0003 
0004 {% if contacts %}
0005 <table border="1" cellpadding="2">
0006 <tr>
0007   <th>{% i18nc "The name of a person" "Name" %}</th>
0008   <th>{% i18n "Email" %}</th>
0009   <th>{% i18n "Phone" %}</th>
0010   <th>{{ _("Nickname") }}</th>
0011   <th>{% i18n "Address" %}</th>
0012   <th>{% i18n "Birthday" %}</th>
0013   <th>{% i18n "Salary" %}</th>
0014   <th>{% i18n "Rating" %}</th>
0015 </tr>
0016 {% for contact in contacts %}
0017 <tr>
0018   <td nowrap>{{ contact.name }}</td>
0019   <td>{{ contact.email }}</td>
0020   <td>{{ contact.phone }}</td>
0021   <td nowrap>{{ contact.nickname }}</td>
0022   <td nowrap>{{ contact.address.houseNumber }} {{ contact.address.streetName }}<br/>{{ contact.address.city }}</td>
0023   <td>{{ _(contact.birthday) }}</td>
0024   <td align="right" nowrap>{% l10n_money contact.salary contact.salaryCurrency %}</td>
0025   <td align="right" nowrap>{{ _(contact.rating) }}</td>
0026 </tr>
0027 {% endfor %}
0028 </table>
0029 {% endif %}
0030 
0031 </html>