tabla_reportes.tpl.html 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <!-- BEGIN: main -->
  2. <!-- BEGIN: titulo --><h3>{TITULO}</h3><!-- END: titulo -->
  3. <table width="100%" class="centrado-block main-table">
  4. <thead>
  5. <tr>
  6. <!-- BEGIN: header --><th width="{WIDTH}%">{TH_TEXTO}</th><!-- END: header -->
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <!-- BEGIN: renglon -->
  11. <tr>
  12. <!-- BEGIN: data -->
  13. <!-- BEGIN: celda --><td <!-- BEGIN: borde --> class="border" <!-- END: borde -->>
  14. {TD_TEXTO}
  15. </td><!-- END: celda -->
  16. <!-- BEGIN: celda_tabla --><td <!-- BEGIN: borde --> class="border" <!-- END: borde -->>
  17. <table width="100%" style='page-break-inside: avoid'>
  18. <!-- BEGIN: renglon -->
  19. <tr>
  20. <!-- BEGIN: celda --><td width="{WIDTH}%" <!-- BEGIN: class -->class="{CLASS}"<!-- END: class -->>{TD_TEXTO}</td><!-- END: celda -->
  21. </tr><!-- END: renglon -->
  22. </table>
  23. </td><!-- END: celda_tabla -->
  24. <!-- END: data -->
  25. </tr>
  26. <!-- END: renglon -->
  27. </tbody>
  28. </table>
  29. <!-- END: main -->