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.

19 lines
1.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <template>
  3. <t t-extend="mail.thread.message.attachments">
  4. <t t-jquery="t[t-if='attachment.file_type_icon === 'webimage''] a[t-att-href='attachment.url']" t-operation="replace">
  5. <span class="m-dotted" t-attf-onclick="$('#ImageModal{{ attachment.id }}').arcticmodal()">
  6. <img t-att-src="widget.attachments_resize_image(attachment.id, [100,80])"></img>
  7. <div class='oe_name'><t t-raw='attachment.name' /></div>
  8. </span>
  9. <div class="g-hidden">
  10. <div class="box-modal" t-attf-id="ImageModal{{ attachment.id }}">
  11. <div class="box-modal_close arcticmodal-close">X</div>
  12. <img t-att-src="widget.attachments_resize_image(attachment.id, [100,80])"></img>
  13. <div class='oe_name'><t t-raw='attachment.name' /></div>
  14. <div class='oe_download_original_img'><a t-att-href='attachment.url' target="_blank">Download</a></div>
  15. </div>
  16. </div>
  17. </t>
  18. </t>
  19. </template>