eiru_reporting_cards.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <template xml:space="preserve">
  3. <t t-name="EiruReportingCards">
  4. <div class="oe_form_sheet oe_form_sheet_width">
  5. <div class="report_view">
  6. <div class="reporting_page_header">
  7. <h1>Reportes disponibles</h1>
  8. </div>
  9. <div class="report_group">
  10. <t t-foreach="widget.reports" t-as="item">
  11. <div class="report_item">
  12. <div class="report_title">
  13. <h1>
  14. <t t-esc="item.title" />
  15. </h1>
  16. </div>
  17. <div class="report_content">
  18. <p>
  19. <t t-esc="item.description" />
  20. </p>
  21. </div>
  22. <div class="report_action">
  23. <button class="oe_button oe_form_button oe_highlight" t-att-value="item.action" autofocus="false">Generar</button>
  24. </div>
  25. </div>
  26. </t>
  27. </div>
  28. </div>
  29. </div>
  30. </t>
  31. </template>