Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

show.html.twig 552B

123456789101112131415161718
  1. {% extends '@LcShop/backend/default/show.html.twig' %}
  2. {% block main %}
  3. {% for creditHistory in entity.creditHistories %}
  4. <li>{{ creditHistory.amount }}</li>
  5. {% else %}
  6. <li><i>Aucun mouvement pour ce compte prépayé</i></li>
  7. {% endfor %}
  8. <button type="button" class="btn btn-default" data-toggle="modal" data-target="#modal-add-credit-history">
  9. {{ "action.addCreditHistory"|trans }}
  10. </button>
  11. {% include 'LcShopBundle:backend/usermerchant:modal_addcredithistory.html.twig' %}
  12. {% endblock main %}