{% extends 'layout.html.twig' %} {% set breadcrumb = buildBreadcrumb([{'route': 'app_wishlist_index', 'trans': 'menu.wishlists'}], wishlist) %} {% block title %} {{ renderTitle(breadcrumb) }} {% endblock %} {% block breadcrumb %} {{ renderBreadcrumb(breadcrumb) }} {% endblock %} {% block meta %} {% if context == 'user' %} {{ include('App/_partials/_meta.html.twig', { 'title': renderTitle(breadcrumb), 'description': 'menu.collections_user'|trans({'%username%': app.request.get('username')}), 'image': wishlist.image }) }} {% else %} {{ parent() }} {% endif %} {% endblock %} {% block content %}
| {{ 'label.image'|trans }} | {{ 'label.name'|trans }} | {{ 'label.price'|trans }} | {% if context == 'default' %}{{ 'label.actions'|trans }} | {% endif %}
|---|---|---|---|
{% if wish.image %}
{% endif %}
|
{% if wish.url is not null %} {{ wish.name }} {% else %} {{wish.name}} {% endif %} | {% if wish.price is not null %} {% if wish.price is not null %} {{ wish.price }} {% if wish.currency is not null %} {{ getCurrencySymbol(wish.currency) }} {% endif %} {% endif %} {% endif %} | {% if context == 'default' %}{% endif %} |