single_customer.html 664 B

1234567891011121314151617181920212223242526272829303132
  1. <div class="section">
  2. <span class="title">
  3. {{? Customer }}: #{{$ id }}
  4. </span>
  5. <span class="separator"></span>
  6. <form action="" method="post">
  7. <input
  8. type="text"
  9. name="id"
  10. value="{{$ id }}"
  11. style="display: none;"
  12. >
  13. {{> customer_fields.html }}
  14. <div class="group">
  15. <input
  16. type="submit"
  17. name="save"
  18. value="{{? Save }}"
  19. >
  20. <input
  21. type="submit"
  22. name="remove"
  23. value="{{? Remove }}"
  24. >
  25. </div>
  26. </form>
  27. </div>