You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 line
552B

  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 %}