Advertisement
Davejee

mepsresults.html

Jan 19th, 2022
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.87 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block title %}
  4.     MEP Results
  5. {% endblock %}
  6.  
  7. {% block main %}
  8. <div class="container-1">
  9.     <div class="box-6">
  10.         <table class="meptable">
  11.             <thead style="background-color: #FFDD00;">
  12.                 <tr>
  13.                     <th>Name</th>
  14.                     <th>Country</th>
  15.                     <th>European Party</th>
  16.                     <th>National Party</th>
  17.                 </tr>
  18.             </thead>
  19.             <tbody>
  20.                  {% for row in resultlist %}
  21.                     <tr>
  22.                         <td>{{ row[0] }}</td>
  23.                         <td>{{ row[1] }}</td>
  24.                         <td>{{ row[2] }}</td>
  25.                         <td>{{ row[3] }}</td>
  26.                     </tr>
  27.                   {% endfor %}
  28.             </tbody>
  29.         </table>
  30.     </div>
  31. </div>
  32. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement