config.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <table class="table table-bordered" style="width: auto;">
  2. <tr>
  3. <td>
  4. <label>Kunde:
  5. <select class="form-control" ng-model="current.kunde" ng-options="k for k in options.kunde" ng-change="data={}"></select>
  6. </label>
  7. </td>
  8. <td>
  9. <label>Datum:
  10. <select class="form-control" ng-model="current.datum" ng-options="dateFormat(v) for v in options.datum[current.kunde]" ng-change="refresh()"></select>
  11. </label>
  12. </td>
  13. <td>
  14. <label>Tabelle:
  15. <select class="form-control" ng-model="current.tabelle" ng-options="v for v in options.tabelle"></select>
  16. </label>
  17. </td>
  18. <td>
  19. <button class="form-control btn btn-default" ng-click="csvExport()" ng-show="current.tabelle">CSV-Export </button>
  20. </td>
  21. </tr>
  22. </table>
  23. <div ng-show="current.tabelle=='versand' ">
  24. <label>E-Mail-Empfänger</label><br/>
  25. <textarea>{{emails()}}</textarea>
  26. </div>
  27. <table class="table table-bordered table-condensed table-striped" style="width: auto;">
  28. <tr>
  29. <th></th>
  30. <th ng-repeat="(col, v) in domain[current.tabelle]">{{col}}</th>
  31. </tr>
  32. <tr>
  33. <td></td>
  34. <td ng-repeat="(col, dom) in domain[current.tabelle]">
  35. <div class="dropdown">
  36. <a class="btn dropdown-toggle" role="button" data-toggle="dropdown">{{filter[current.tabelle][col]||'alle'}}&nbsp;<b class="caret"></b></a>
  37. <ul class="dropdown-menu" role="menu">
  38. <li><a ng-click="filter[current.tabelle][col]=''">alle</a></li>
  39. <li class="divider"></li>
  40. <li ng-repeat="e in dom"><a ng-click="filter[current.tabelle][col]=e">{{e}}</a></li>
  41. </ul>
  42. </div>
  43. </td>
  44. </tr>
  45. <tr ng-repeat="row in data[current.tabelle] | filter: filter[current.tabelle] | limitTo: 200">
  46. <th>{{$index+1}}</th>
  47. <td ng-repeat="col in row">
  48. {{col}}
  49. </td>
  50. </tr>
  51. </table>