seller.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <div class="row">
  2. <table style="width: 400px;">
  3. <tr>
  4. <td><h3>Verkäufer</h3></td>
  5. <td>
  6. <button type="button" class="btn btn-success" ng-click="save()"><i class="glyphicon glyphicon-floppy-disk"></i> Speichern</button>
  7. </td>
  8. <td>
  9. <a type="button" class="btn btn-default" href="api/csv.php"><i class="glyphicon glyphicon-download"></i> CSV-Export</a>
  10. </td>
  11. </tr>
  12. </table>
  13. <br/>
  14. <table class="table table-striped">
  15. <tr>
  16. <th>Verk.-Nr.</th>
  17. <th>Name</th>
  18. <th>Vorname</th>
  19. <th>Adresse</th>
  20. <th>PLZ</th>
  21. <th>Ort</th>
  22. <th>Telefon</th>
  23. <th>E-Mail</th>
  24. </tr>
  25. <tr ng-repeat="s in sellers" class="middle">
  26. <th>
  27. {{s.seller_id}}
  28. </th>
  29. <td>
  30. <input class="normal" type="text" ng-model="s.name" />
  31. </td>
  32. <td>
  33. <input class="normal" type="text" ng-model="s.first_name" />
  34. </td>
  35. <td>
  36. <input class="normal" type="text" ng-model="s.address" />
  37. </td>
  38. <td>
  39. <input class="normal" type="text" ng-model="s.zip_code" />
  40. </td>
  41. <td>
  42. <input class="normal" type="text" ng-model="s.place" />
  43. </td>
  44. <td>
  45. <input class="normal" type="text" ng-model="s.phone" />
  46. </td>
  47. <td>
  48. <input class="normal" type="text" ng-model="s.mail" />
  49. </td>
  50. </tr>
  51. </table>
  52. </div>