File indexing completed on 2025-03-09 04:54:35

0001 {% if block.isAttachment %}
0002 <a name="att{{block.attachmentIndex}}"></a>
0003 <div id="attachmentDiv{{block.attachmentIndex}}">
0004 {% endif %}
0005 {% if not showOnlyOneMimePart and not block.isFirstTextPart and block.hasLabel %}
0006     <table cellspacing="1" class="textAtm">
0007         <tr class="textAtmH">
0008             <td dir="{{global.dir}}">
0009             {% if block.showLink %}
0010                 <a href="{{block.link}}">{{ block.label }}</a>
0011             {% else %}
0012                 {{ block.label }}
0013             {% endif %}
0014             {% if block.comment %}
0015                 <br/>
0016                 {{ block.comment }}
0017             {% endif %}
0018             </td>
0019         </tr>
0020         <tr class="textAtmB">
0021             <td>
0022                 {% callback content %}
0023             </td>
0024         </tr>
0025     </table>
0026 {% else %}
0027     {% callback content %}
0028 {% endif %}
0029 {% if block.isAttachment %}
0030 </div>
0031 {% endif %}