123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {% extends 'base.html' %}
- {% block content %}
- <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 mb-3">
- <h1 class="h2"><span style="border-bottom: 3px #e24949 dashed;">{{ playlist_type_display|title }}</span> <span class="badge bg-primary rounded-pill">{{ playlists.count }}</span></h1>
- {% if playlists %}
- <div class="btn-toolbar mb-2 mb-md-0">
- <!--
- <div class="btn-group me-2">
- <button type="button" class="btn btn-outline-info">Grid</button>
- <button type="button" class="btn btn-outline-info">List</button>
- </div>
- -->
- <div class="btn-group">
- <button type="button" class="btn btn-success dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
- Sort By
- </button>
- <ul class="dropdown-menu">
- <li class="dropdown-item"><a hx-get="{% url 'order_playlists_by' playlist_type 'playlist-duration-in-seconds' %}" hx-trigger="click" hx-target="#search-results">Duration</a></li>
- <li class="dropdown-item"><a hx-get="{% url 'order_playlists_by' playlist_type 'video-count' %}" hx-trigger="click" hx-target="#search-results"># Videos</a></li>
- <li class="dropdown-item"><a hx-get="{% url 'order_playlists_by' playlist_type 'recently-accessed' %}" hx-trigger="click" hx-target="#search-results">Recently Accessed</a></li>
- </ul>
- </div>
- </div>
- {% endif %}
- </div>
- {% if playlists %}
- <input class="form-control border border-secondary" type="text"
- name="search" placeholder="Begin to search playlists..."
- hx-post="{% url 'search_playlists' playlist_type %}"
- hx-trigger="keyup changed delay:700ms"
- hx-target="#search-results"
- hx-indicator=".htmx-indicator">
- <br>
- <div id="search-results">
- {% include 'intercooler/playlists.html' %}
- </div>
- {% else %}
- <div class="card bg-dark text-white mb-3">
- <div class="card-body">
- <div class="d-flex justify-content-center h3">
- Nothing here!
- </div>
- <div class="d-flex justify-content-center h5">
- {% if playlist_type == "watching" %}
- You can mark a playlist as watching by heading over to the playlist and marking it from the dropdown.
- {% elif playlist_type == "all" %}
- There's no playlists in your UnTube right now.
- {% elif playlist_type == "imported" %}
- To import public playlists into your UnTube collection you can head over to <a href="{% url 'manage_playlists' %}" class="btn btn-sm btn-primary ms-2">Manage</a>
- {% elif playlist_type == "plan-to-watch" %}
- You can mark a playlist as plan to watch by heading over to the playlist and marking it from the dropdown.
- {% elif playlist_type == "favorites" %}
- You can mark a playlist as favorite by heading over to the playlist page and pressing the star icon.
- {% elif playlist_type == "user-owned" %}
- {% if user.profile.imported_yt_playlists %}
- Looks like you have no playlists on YouTube.
- {% else %}
- You can always head over to your <a href="{% url 'profile' %}" class="btn btn-sm btn-primary ms-2 me-2">Profile</a> to import all of your public/private YouTube playlists.
- {% endif %}
- {% else %}
- {{ playlist_type }}
- {% endif %}
- </div>
- </div>
- </div>
- {% endif %}
- <br>
- {% endblock %}
|