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

0001 <html>
0002 
0003 {% if contacts %}
0004   <h2>{% i18np "%n person" "%n people" contacts|length %}</h2>
0005   <table border="1" cellpadding="2">
0006   <tr>
0007     <th>
0008       <img src="{% media_finder "us_flag.png" %}" />
0009       <br /><img src="{% media_finder "de_flag.png" %}" />
0010       <br /><img src="{% media_finder "fr_flag.png" %}" />
0011     </th>
0012     <th>
0013     {% i18nc_var "The name of a person" "Name" as personName %}
0014     {{ personName }}
0015     {% with_locale "de_DE" %}
0016       <br />{{ personName }}
0017     {% endwith_locale %}
0018     {% with_locale "fr_FR" %}
0019       <br />{{ personName }}
0020     {% endwith_locale %}
0021     </th>
0022     <th>
0023     {% i18n "Email" %}
0024     {% with_locale "de_DE" %}
0025       <br />{% i18n "Email" %}
0026     {% endwith_locale %}
0027     {% with_locale "fr_FR" %}
0028       <br />{% i18n "Email" %}
0029     {% endwith_locale %}
0030     </th>
0031     <th>
0032     {% i18n "Phone" %}
0033     {% with_locale "de_DE" %}
0034       <br />{% i18n "Phone" %}
0035     {% endwith_locale %}
0036     {% with_locale "fr_FR" %}
0037       <br />{% i18n "Phone" %}
0038     {% endwith_locale %}
0039     </th>
0040     <th>
0041     {{ _("Nickname") }}
0042     {% with_locale "de_DE" %}
0043       <br />{{ _("Nickname") }}
0044     {% endwith_locale %}
0045     {% with_locale "fr_FR" %}
0046       <br />{{ _("Nickname") }}
0047     {% endwith_locale %}
0048     </th>
0049     <th>
0050     {% i18n "Address" %}
0051     {% with_locale "de_DE" %}
0052       <br />{% i18n "Address" %}
0053     {% endwith_locale %}
0054     {% with_locale "fr_FR" %}
0055       <br />{% i18n "Address" %}
0056     {% endwith_locale %}
0057     </th>
0058     <th>
0059     {% i18n "Birthday" %}
0060     {% with_locale "de_DE" %}
0061       <br />{% i18n "Birthday" %}
0062     {% endwith_locale %}
0063     {% with_locale "fr_FR" %}
0064       <br />{% i18n "Birthday" %}
0065     {% endwith_locale %}
0066     </th>
0067   </tr>
0068 {% for contact in contacts %}
0069 <tr>
0070   <td></td>
0071   <td>{{ contact.name }}</td>
0072   <td>{{ contact.email }}</td>
0073   <td>{{ contact.phone }}</td>
0074   <td>{{ contact.nickname }}</td>
0075   <td>{{ contact.address.houseNumber }} {{ contact.address.streetName }}<br/>{{ contact.address.city }}</td>
0076   <td>{{ _(contact.birthday) }}
0077     {% with_locale "de_DE" %}
0078       <br />{{ _(contact.birthday) }}
0079     {% endwith_locale %}
0080     {% with_locale "fr_FR" %}
0081       <br />{{ _(contact.birthday) }}
0082     {% endwith_locale %}</td>
0083 </tr>
0084 {% endfor %}
0085 </table>
0086 {% endif %}
0087 </html>