File indexing completed on 2025-01-05 04:48:29

0001 <html>
0002 
0003 <h1>{% i18n "Address Book" %}</h1>
0004 {% if contacts %}
0005 {% for contact in contacts %}
0006 <h1>{{ contact.realName|safe }}</h1>
0007 <p>{% for email in contact.emails %}
0008     {{ email.email }}{% if not forloop.last %}, {% endif %}
0009 {% endfor %}</p>
0010 {% if contact.note %}
0011 <p>{{ contact.note|safe }}</p>
0012 {% endif %}
0013 <br>
0014 <br>
0015 {% endfor %}
0016 {% endif %}
0017 
0018 </html>
0019