Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  4.     </head>
  5.     <body>
  6.         <table class="table">
  7.             <thead>
  8.                 <tr>
  9.                     <th scope="col">Name</th>
  10.                     <th scope="col">Age</th>
  11.                     <th scope="col">Day of Birth</th>
  12.                     <th scope="col">Occupation</th>
  13.                 </tr>
  14.             </thead>
  15.             <tbody>
  16.             {% for p in data %}
  17.                 <tr>
  18.                     <td>{{ p.name }}</td>
  19.                     <td>{{ p.age }}</td>
  20.                     <td>{{ p.dob }}</td>
  21.                     <td>{{ p.occupation }}</td>
  22.                 </tr>
  23.             {% endfor %}
  24.     </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement