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.

65 lines
2.4 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2017 MuK IT GmbH
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as
  6. published by the Free Software Foundation, either version 3 of the
  7. License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <templates>
  16. <div t-name="ViewerJSFrame" class="o_preview_viewerjs">
  17. <iframe allowfullscreen="allowfullscreen"
  18. webkitallowfullscreen="webkitallowfullscreen"
  19. t-att-src="url">
  20. </iframe>
  21. </div>
  22. <div t-name="UnsupportedContent" class="o_preview_unsupported">
  23. <div class="o_preview_unsupported_header">
  24. <h3>Unsupported File Extension</h3>
  25. </div>
  26. <div class="o_preview_unsupported_body">
  27. <div class="col-xs-12 o_preview_unsupported_info">
  28. <p>
  29. This file type is currently not supported. By installing further extension via the
  30. <a href="https://www.odoo.com/apps/modules/browse?author=MuK%20IT">Odoo App Store</a>
  31. it is possible to improve the Preview.
  32. </p>
  33. </div>
  34. <div class="col-xs-3 o_preview_unsupported_icon" align="center">
  35. <div class="o_image" t-att-data-mimetype="mimetype" />
  36. </div>
  37. <div class=" col-xs-9">
  38. <table class="table o_preview_unsupported_table">
  39. <tbody>
  40. <tr>
  41. <td>Filename:</td>
  42. <td><t t-esc="title"/></td>
  43. </tr>
  44. <tr>
  45. <td>Type:</td>
  46. <td><t t-esc="mimetype"/></td>
  47. </tr>
  48. <tr>
  49. <td>Extension:</td>
  50. <td><t t-esc="extension"/></td>
  51. </tr>
  52. </tbody>
  53. </table>
  54. </div>
  55. <div class="col-xs-12 o_preview_unsupported_download text-center">
  56. <a class="btn btn-primary" t-att-href="url">Download</a>
  57. </div>
  58. </div>
  59. </div>
  60. </templates>