Médias publiés ({{ userMediasCount }})
{% set index = 0 %}
{% for media in userMedias %}
{% if app.user and app.user.autoPlayGifs %}
{% endif %}
{% if app.user and not app.user.autoPlayGifs %}
{% endif %}
{{ media.title|capitalize }}
{# Sticker NEW #}
{% if app.user and media.publishDate > app.user.previousCo %}
new
{% endif %}
{# {{ time_diff(media.publishDate) }} #}
{% if app.user and not app.user.autoPlayGifs %}
{% endif %}
{# Gif autoplay=false si paramètre user #}
{% if app.user %}
{% if not app.user.autoPlayGifs %}
{% else %}
{% endif %}
{% else %}
{% endif %}
{% if app.user and app.user.autoPlayGifs %}
{% endif %}
{# Upvote/downvote média + score + nbrPosts #}
{# Upvote/downvote média + score + nbrPosts #}
{# Pas opti: bloucle sur tous les likes du post pour savoir si liké (boucle dans boucle) #}
{% set liked = "" %}
{% if app.user %}
{% for upvote in media.UserUpvote %}
{% if upvote == app.user %}
{% set liked = "upBtnLiked" %}
{% endif %}
{% endfor %}
{% endif %}
{% set index = index + 1 %}
{% endfor %}
{{ media.upvoteCount }}
{% if media.mediaPostsCount == 0 %}
{{ media.mediaPostsCount }}
{% else %}
{{ media.mediaPostsCount }}
{% endif %}
 }})