1234567891011121314151617181920212223242526272829 |
- <!-- BEGIN: main -->
- <!-- BEGIN: titulo --><h3>{TITULO}</h3><!-- END: titulo -->
- <table width="100%" class="centrado-block main-table">
- <thead>
- <tr>
- <!-- BEGIN: header --><th width="{WIDTH}%">{TH_TEXTO}</th><!-- END: header -->
- </tr>
- </thead>
- <tbody>
- <!-- BEGIN: renglon -->
- <tr>
- <!-- BEGIN: data -->
- <!-- BEGIN: celda --><td <!-- BEGIN: borde --> class="border" <!-- END: borde -->>
- {TD_TEXTO}
- </td><!-- END: celda -->
- <!-- BEGIN: celda_tabla --><td <!-- BEGIN: borde --> class="border" <!-- END: borde -->>
- <table width="100%" style='page-break-inside: avoid'>
- <!-- BEGIN: renglon -->
- <tr>
- <!-- BEGIN: celda --><td width="{WIDTH}%" <!-- BEGIN: class -->class="{CLASS}"<!-- END: class -->>{TD_TEXTO}</td><!-- END: celda -->
- </tr><!-- END: renglon -->
- </table>
- </td><!-- END: celda_tabla -->
- <!-- END: data -->
- </tr>
- <!-- END: renglon -->
- </tbody>
- </table>
- <!-- END: main -->
|