Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.41 KB | None | 0 0
  1. <div class="col-xs-12">
  2.     <h3>Modify Users</h3>
  3. </div>
  4.  
  5. <div class="container">          
  6.     <table class="table table-hover">
  7.       <thead>
  8.         <tr>
  9.           <th>ID</th>
  10.  
  11.           <th>Edit</th>
  12.           <th>Delete</th>
  13.         </tr>
  14.       </thead>
  15.       <tbody>
  16.         <tr ng-repeat="user in users">
  17.           <td>{{ user.id }}</td>   
  18.           <td><button>Edit</button></td>
  19.           <td><button>Delete</button></td>
  20.         </tr>
  21.       </tbody>
  22.     </table>
  23.   </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement