Guest User

Untitled

a guest
Aug 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Twig Emtpy Variable -> Exception?
  2. {% for item in items %}
  3. <div class="description">
  4. Title: {{ item.name }}<br />
  5. Price: {{ item.price }}
  6. </div>
  7. {% else %}
  8. <p>...</p>
  9. {% endfor %}
  10.  
  11. {{ item.price|default("nothing") }}
  12.  
  13. {% if item.price is defined and item.price not in [''] %}
  14. {{ item.price }}
  15. {% endif %}
  16.  
  17. twig:
  18. strict_variables: false
Add Comment
Please, Sign In to add comment