Advertisement
Guest User

ejemplo list

a guest
Aug 29th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <div ng-controller="ListCtrl">
  2. <div class="row pull-right">
  3. <form class="form-inline" ng-submit="submit()" ng-model="addForm" name="addForm">
  4. <div class="form-group">
  5. <input type="text" class="form-control" ng-model="description" id="description" placeholder="Description">
  6. </div>
  7. <div class="form-group">
  8. <input type="number" class="form-control" id="value" ng-model="value" placeholder="0">
  9. </div>
  10. <button type="submit" class="btn btn-default">+</button>
  11. </form>
  12. </div>
  13. <div class="row">
  14. <table class="table">
  15. <thead>
  16. <tr>
  17. <th>Description</th>
  18. <th>Valor</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <tr ng-repeat="finanza in finanzas">
  23. <th scope="row">{{finanza.description}}</th>
  24. <td>{{finanza.value}}</td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement