{{ (v.upload_date[:4] ~ '-' ~ v.upload_date[4:6] ~ '-' ~ v.upload_date[6:8]) if v.upload_date and v.upload_date|length == 8 else (v.upload_date or '') }}
{% if v.duration %}{{ (v.duration // 3600) ~ ':' ~ '%02d' % ((v.duration // 60) % 60) ~ ':' ~ '%02d' % (v.duration % 60) if v.duration >= 3600 else ((v.duration // 60) ~ ':' ~ '%02d' % (v.duration % 60)) }}{% endif %}
{% if v.view_count %}{{ "{:,}".format(v.view_count) }} views{% endif %}
{% if v.tags %}
{% for t in v.tags[:5] %}{{ t }}{% endfor %}
{% endif %}