File indexing completed on 2025-02-02 03:51:59
0001 <html> 0002 <h2>{% i18ncp "The total number of people displayed" "%n person" "%n 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 <th>{% i18n "Friends" %}</th> 0016 </tr> 0017 {% for contact in contacts %} 0018 <tr> 0019 <td nowrap>{{ contact.name }}</td> 0020 <td>{{ contact.email }}</td> 0021 <td>{{ contact.phone }}</td> 0022 <td nowrap>{{ contact.nickname }}</td> 0023 <td nowrap>{{ contact.address.houseNumber }} {{ contact.address.streetName }}<br/>{{ contact.address.city }}</td> 0024 <td>{{ _(contact.birthday) }}</td> 0025 <td align="right" nowrap>{% l10n_money contact.salary contact.salaryCurrency %}</td> 0026 <td align="right" nowrap>{{ _(contact.rating) }}</td> 0027 <td align="right" nowrap>{% for friend in contact.friends %}{{ friend.name }}({{ friend.nickname }})<br/>{% endfor %}</td> 0028 </tr> 0029 {% endfor %} 0030 </table> 0031 {% endif %} 0032 0033 </html>