File indexing completed on 2025-02-02 03:51:59
0001 0002 0003 <h2>{% i18np "%1 person" "%1 people" contacts|length %}</h2> 0004 <table border="1" cellpadding="2"> 0005 <tr> 0006 <th>{% i18n "Name" %}</th> 0007 <th>{% i18n "Email" %}</th> 0008 <th>{% i18n "Phone" %}</th> 0009 <th>{{ _("Nickname") }}</th> 0010 <th>{% i18n "Address" %}</th> 0011 </tr> 0012 {% for contact in contacts %} 0013 <tr> 0014 <td>{{ contact.name }}</td> 0015 <td>{{ contact.email }}</td> 0016 <td>{{ contact.phone }}</td> 0017 <td>{{ contact.nickname }}</td> 0018 <td nowrap>{{ contact.address.houseNumber }} {{ contact.address.streetName }}<br/>{{ contact.address.city }}</td> 0019 </tr> 0020 {% endfor %} 0021 </table>