選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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