2
0

favorites.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {% extends 'base.html' %}
  2. {% load humanize %}
  3. {% block content %}
  4. <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
  5. <h1 class="h2">Favorite Playlists
  6. <span class="badge bg-primary rounded-pill">{{ playlists.count|default:"0" }}</span>
  7. </h1>
  8. {% if playlists %}
  9. <form method="get" action="{% url 'search' %}" >
  10. <input size="50" class="form-control border border-secondary" type="text"
  11. name="query" placeholder="Search your favorite playlists...">
  12. <input type="text" class="visually-hidden" name="mode" value="playlists">
  13. <input type="text" class="visually-hidden" name="type" value="favorites">
  14. <button type="submit" class="visually-hidden"></button>
  15. </form>
  16. {% endif %}
  17. </div>
  18. <div>
  19. <div class="row row-cols-1 row-cols-md-4 g-4">
  20. {% if playlists %}
  21. {% include 'intercooler/playlists.html' with playlists=playlists %}
  22. {% else %}
  23. <h5 class="text-dark align-content-center">No playlists marked favorite :(</h5>
  24. {% endif %}
  25. </div>
  26. </div>
  27. <br>
  28. <br>
  29. <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
  30. <h1 class="h2">Favorite Videos
  31. <span class="badge bg-primary rounded-pill">{{ videos.count }}</span>
  32. </h1>
  33. {% if videos %}
  34. <form method="get" action="{% url 'search' %}" >
  35. <input size="50" class="form-control border border-secondary" type="text"
  36. name="query" placeholder="Search your favorite videos...">
  37. <input type="text" class="visually-hidden" name="mode" value="videos">
  38. <input type="text" class="visually-hidden" name="type" value="favorite">
  39. <button type="submit" class="visually-hidden"></button>
  40. </form>
  41. {% endif %}
  42. </div>
  43. <div>
  44. <div class="row row-cols-1 row-cols-md-3 g-4">
  45. {% if videos %}
  46. {% include 'intercooler/video_cards.html' with videos=videos %}
  47. {% else %}
  48. <h5 class="text-dark align-content-center">No videos marked favorite :(</h5>
  49. {% endif %}
  50. </div>
  51. </div>
  52. {% endblock %}