task_list.html 553 B

1234567891011121314151617181920212223242526272829303132
  1. {% extends "base_list.html" %}
  2. {% block title %}Tasks{% endblock %}
  3. {% block head_extra %}
  4. <style>
  5. dl {
  6. width: 210px;
  7. float: left;
  8. margin-right: 10px;
  9. }
  10. dt a {
  11. color: white;
  12. text-decoration: none;
  13. font-size: smaller;
  14. }
  15. img {
  16. height: 200px;
  17. width: 200px;
  18. object-fit: cover;
  19. }
  20. dd .right {
  21. float: right;
  22. }
  23. </style>
  24. {% endblock %}
  25. {% block lists %}
  26. <div class="row">
  27. <div class="col-md">
  28. <div class="table-responsive">{% include "_scrobblable_list.html" %}</div>
  29. </div>
  30. </div>
  31. {% endblock %}