{% extends 'admin/base.html.twig' %} {% block breadcrumb_title %}{{ "message.promotion_list" | trans }}{% endblock %} {% block body %}
{{ "label.product" | trans }} | {{ "label.price" | trans }} | {{ "message.start_date" | trans }} | {{ "message.end_date" | trans }} | {{ "label.quantity" | trans }} | {{ "label.unlimited" | trans }} | {{ "message.created_at" | trans }} | {{ "label.business" | trans }} | |
---|---|---|---|---|---|---|---|---|
{{ promotion.product.name }} | {{ promotion.price }} {{ unit_labels(promotion.product.unit) }} | {{ promotion.startDate ? promotion.startDate|date('Y-m-d H:i:s') : '' }} | {{ promotion.endDate ? promotion.endDate|date('Y-m-d H:i:s') : '' }} | {{ promotion.quantity }} | {{ render_boolean(promotion.unlimited) }} | {{ promotion.createdAt ? promotion.createdAt|date('Y-m-d H:i:s') : '' }} | {{ promotion.exclusiveBusiness ? promotion.exclusiveBusiness.name : "" }} | {{ "label.edit" | trans }} |
{{ "message.no_records_found" | trans }} |