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.

53 lines
820 B

  1. ::use 'design.mtt'::
  2. <div class="col-md-9">
  3. <div class="article">
  4. <h2>::_("Suppliers")::</h2>
  5. <table class="table table-bordered table-hover" style="width:100%;">
  6. ::foreach m vendors.current()::
  7. <tr>
  8. <td>
  9. <a href="/vendor/view/::m.id::">
  10. ::m.name::
  11. </a>
  12. </td>
  13. <td>
  14. </td>
  15. </tr>
  16. ::end::
  17. <tr >
  18. <th colspan="2">
  19. <a href="?page=::vendors.page-1::"> &lt;&lt; </a>
  20. &nbsp;
  21. page ::vendors.page::/::vendors.pages::
  22. &nbsp;
  23. <a href="?page=::vendors.page+1::"> &gt;&gt; </a>
  24. </th>
  25. </tr>
  26. </table>
  27. <div>
  28. <a href="/vendor/insert" class="btn btn-default">::_("New suppliers")::</a>
  29. </div>
  30. <hr/>
  31. </div>
  32. </div>
  33. <div class="col-md-3">
  34. <div class="block">
  35. ::_("On this page you can manage the list of suppliers of your group.")::
  36. </div>
  37. </div>
  38. ::end::