Advertisement
Kitood

Untitled

Feb 3rd, 2023
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. <section class="doctor" id="res">
  2. <h2 class="apt">THESES </h2>
  3. <center>
  4. <div class="card mb-3 card-ki-mkb-1">
  5. <div class="card-header">
  6. <i class="fas fa-table"></i>
  7. Research Papers</div>
  8. <div class="card-body">
  9. <div class="table-responsive">
  10. <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
  11. <thead>
  12. <th>Paper Name</th>
  13. <th>Category</th>
  14. <th>View</th>
  15. <th>Author</th>
  16. <th>Institute Name</th>
  17. <th>Date</th>
  18. </thead>
  19. <tbody>
  20. {% for pdf in pdf_list %}
  21. <tr>
  22. <td>{{pdf['paper_name']}}</td>
  23. <td>{{pdf['category']}}</td>
  24. <td><button class="two"><a href="{{pdf['paper_url']}}" class="link-mi">View</a></button></td>
  25. <td>{{pdf['author']}}</td>
  26. <td>{{pdf['institute_name']}}</td>
  27. <td>{{pdf['upload_date']}}</td>
  28. </tr>
  29. {% endfor %}
  30. </tbody>
  31. </table>
  32. </div>
  33. </div>
  34. </div>
  35. </center>
  36. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement