gaps.html 639 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Gaps</h1>
  4. <p>These are gaps of at least an hour in your browsing history, from most recent to oldest.</p>
  5. <table class="table table-striped w-75">
  6. <thead>
  7. <tr>
  8. <th>Start Time</th>
  9. <th>End Time</th>
  10. <th>Gap Length (Hours)</th>
  11. <th>Link</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% for gap in view_model.gaps %}
  16. <tr>
  17. <td>
  18. {{ gap.start_time }}
  19. </td>
  20. <td>
  21. {{ gap.end_time }}
  22. </td>
  23. <td>
  24. {{ gap.gap_hours }}
  25. </td>
  26. <td>
  27. <a href="{{ gap.url }}">Browse</a>
  28. </td>
  29. </tr>
  30. {% endfor %}
  31. </tbody>
  32. </table>
  33. <!--
  34. <code><pre>{{ view_model | tojson(indent = 2) }}</pre></code>
  35. -->
  36. {% endblock %}