Guest User

Untitled

a guest
May 25th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. {% for field in submission.fieldMetadata %}
  2. {% if field.type == "file" %}
  3. {% set assetId = attribute(submission, field.handle) %}
  4. {% set assets = craft.assets.id(assetId).all() %}
  5. {% for asset in assets %}
  6. {% if asset %}
  7. {% if asset.kind == "image" %}
  8. <img src='{{ asset.url }}'>
  9. {% endif %}
  10. {% endif %}
  11. {% endfor %}
  12. {% endif %}
  13. {% endfor %}
Add Comment
Please, Sign In to add comment