File indexing completed on 2024-12-22 04:55:34
0001 <div align="center"> 0002 <table cellpadding="3" cellspacing="0" width="100%"> 0003 <tr> 0004 <td align="right" valign="top" width="30%"> 0005 <img src="group_photo" width="100" vspace="1"> 0006 </td> 0007 <td align="left" width="70%"> 0008 <font size="+2"> 0009 <b>{{ contactGroup.name }}</b> 0010 </font> 0011 </td> 0012 </tr> 0013 </table> 0014 0015 <table width="100%"> 0016 {% for member in contactGroup.members %} 0017 {% with member.name as title %} 0018 {% with member.emailLink|safe as value %} 0019 {% include "contactgroup_memberrow.html" %} 0020 {% endwith %} 0021 {% endwith %} 0022 {% endfor %} 0023 <tr> 0024 <td colspan="2"> </td> 0025 </tr> 0026 {% for field in contactGroup.additionalFields %} 0027 {% with field.title as title %} 0028 {% with field.value as value %} 0029 {% include "contactgroup_additionalfieldrow.html" %} 0030 {% endwith %} 0031 {% endwith %} 0032 {% endfor %} 0033 </table> 0034 </div>