You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.3 KiB

8 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="assets_specific" inherit_id="report.assets_common">
  4. <xpath expr="." position="inside">
  5. <link href="/account_financial_report_qweb/static/src/css/report.css" rel="stylesheet"/>
  6. </xpath>
  7. </template>
  8. <template id="account_financial_report_qweb.internal_layout">
  9. <div class="header">
  10. <div class="row">
  11. <div class="col-xs-6">
  12. <span t-esc="title"/>
  13. </div>
  14. <div class="col-xs-6 text-right">
  15. <span t-esc="company_name"/>
  16. </div>
  17. </div>
  18. </div>
  19. <t t-raw="0" />
  20. <div class="footer">
  21. <div class="row">
  22. <div class="col-xs-6 custom_footer">
  23. <span t-esc="context_timestamp(datetime.datetime.now()).strftime('%Y-%m-%d %H:%M')"/>
  24. </div>
  25. <div class="col-xs-6 text-right custom_footer">
  26. <ul class="list-inline">
  27. <li><span class="page"/></li>
  28. <li>/</li>
  29. <li><span class="topage"/></li>
  30. </ul>
  31. </div>
  32. </div>
  33. </div>
  34. </template>
  35. </odoo>