Advertisement
Guest User

Untitled

a guest
Jul 20th, 2016
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.34 KB | None | 0 0
  1. <table id="tblPersons" class="table table-hover table-condensed userTables" >
  2.                 <thead>
  3.                     <tr>
  4.                         <th>ID</th>
  5.                         <th>Name</th>
  6.                         <th>Salary</th>
  7.                         <th>Cooperation</th>
  8.                         <th>Skills</th>
  9.                         <th>Experience</th>
  10.                         <th></th> //for button
  11.                     </tr>
  12.                 </thead>
  13.                 <tfoot>
  14.                    //filters
  15.                 </tfoot>
  16.                 <tbody>
  17.                     <tr>
  18.                         <td>Id</td>
  19.                         <td>Name Surname</td>
  20.                         <td>Salary</td>
  21.                         <td>
  22.                             // there is more span elementes, data is collection
  23.                             <span class="label label-default">some data</span>
  24.                         </td>
  25.                         <td>
  26.                             // there is more span elementes, data is collection
  27.                             <span class="label label-default">some data</span>
  28.                         </td>
  29.                         <td>Experience</td>
  30.                         <td>
  31.                             <button></button>
  32.                         </td>
  33.                     </tr>
  34.                 }
  35.                 </tbody>
  36. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement