Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <template>
  2. <h2>${heading}</h2>
  3. <!--class="table table-striped table-bordered"-->
  4. <table ref="myForm" id="my-table" class="tablesorter">
  5. <thead>
  6. <tr>
  7. <td> Name </td>
  8. <td> State </td>
  9. <td> City </td>
  10. <td> Education </td>
  11. <td> Select </td>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr>
  16. <td>Brian</td>
  17. <td>Texas</td>
  18. <td>Austin</td>
  19. <td>College</td>
  20. <td><input type="checkbox"></input></td>
  21. </tr>
  22. <tr>
  23. <td>Brian</td>
  24. <td>Texas</td>
  25. <td>Austin</td>
  26. <td>College</td>
  27. <td><input type="checkbox"></input></td>
  28. </tr>
  29. <tr>
  30. <td>Brian</td>
  31. <td>Texas</td>
  32. <td>Austin</td>
  33. <td>College</td>
  34. <td><input type="checkbox"></input></td>
  35. </tr>
  36. </tbody>
  37. <table>
  38. </template>
  39.  
  40. <!--<tr repeat.for="resume of resumes">
  41. <td>${resume.name}</td>
  42. <td>${resume.state}</td>
  43. <td>${resume.city}</td>
  44. <td>${resume.education}</td>
  45. <td><input type="checkbox"></input></td>
  46. </tr>-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement