← Back to RTube
{{ playlist.name }}
{{ playlist.video_count() }} video{{ 's' if playlist.video_count() != 1 else '' }} • Created by
{{ playlist.owner_username }}
• {{ playlist.created_at.strftime('%Y-%m-%d') }}
{% if playlist.description %}
{{ playlist.description }}
{% endif %} {% if is_owner or can_delete %}
{% if is_owner %}
Edit
{% endif %} {% if can_delete %}
Delete
{% endif %}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% if playlist.videos %}
{% for entry in playlist.videos %}
{% if entry.video.thumbnail %}
{% else %}
{% endif %}
{{ entry.video.title or entry.video.filename }}
{{ entry.video.view_count }} view{{ 's' if entry.video.view_count != 1 else '' }}
{% if entry.video.owner_username %}
by {{ entry.video.owner_username }}
{% endif %}
{% if is_owner %}
Remove
{% endif %}
{% endfor %}
{% else %}
This playlist is empty. Add videos while watching them!
{% endif %}