Guest User

Untitled

a guest
Nov 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. {% load static %}<!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Boards</title>
  6. <link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
  7. </head>
  8. <body>
  9. <div class="container">
  10. <ol class="breadcrumb my-4">
  11. <li class="breadcrumb-item active">Boards</li>
  12. </ol>
  13. <table class="table">
  14. <thead class="thead-inverse">
  15. <tr>
  16. <th>Board</th>
  17. <th>Posts</th>
  18. <th>Topics</th>
  19. <th>Last Post</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. {% for board in boards %}
  24. <tr>
  25. <td>
  26. {{ board.name }}
  27. <small class="text-muted d-block">{{ board.description }}</small>
  28. </td>
  29. <td class="align-middle">0</td>
  30. <td class="align-middle">0</td>
  31. <td></td>
  32. </tr>
  33. {% endfor %}
  34. </tbody>
  35. </table>
  36. </div>
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment