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