{% extends "base.html" %} {% block title %}{{ _('My Posts') }}{% endblock %} {% block content %}

{{ _('My Posts') }}

{% for post in posts %}
{% if post.user.profile_pic and post.user.profile_pic != 'default.png' %} {% if SHOPITEM_ID_GOLDRAHMEN in post.user.shop_items | map(attribute='item_id') | list %} {% else %} {% endif %} {% else %} {% endif %} {{ post.user.username }}

{{ post.content }}

{% for upload in post.uploads %} {% if upload.filetype.startswith('image') %} {% elif upload.filetype.startswith('video') %} {{ _('Download Video') }} {% elif upload.filetype.startswith('audio') %} {{ _('Download Audio') }} {% else %} {{ upload.filename }} {% endif %} {% endfor %}
{% if post.visibility == 'friends' %} {{ _('Friends only') }} {% else %} {{ _('Public') }} {% endif %} {{ post.created_at.strftime('%Y-%m-%d %H:%M') }}
{% for comment in post.comments %}
{% if comment.user.profile_pic and comment.user.profile_pic != 'default.png' %} {{ comment.user.username }}: {% else %} {{ comment.user.username }}: {% endif %} {% if comment.user_id == current_user.id %}
{% endif %}
{% endfor %}
{% endfor %} {% if not posts %} {% endif %} {% endblock %}