Advertisement
Kitood

Untitled

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