{% extends "base.html" %} {% block title %}{{ _('Feed') }}{% endblock %} {% block content %} {% if current_user.is_authenticated %}
{% if not SHOPITEM_ID_EXTRA_TYPES in current_user.shop_items | map(attribute='item_id') | list %}

{{ _('Limit: 250') }}

{% else %}

{{ _('Limit: 500') }}

{% endif %} {% if SHOPITEM_ID_EXTRA_UPLOAD in current_user.shop_items | map(attribute='item_id') | list %} {% endif %} {{ _('You can upload images, videos, audio files, or documents.') }}
{% else %} {% endif %} {% 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.user_id == current_user.id %}
{% endif %} {% if post.visibility == 'friends' %} {{ _('Friends only') }} {% else %} {{ _('Public') }} {% endif %} {{ post.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if not current_user.is_authenticated %} {{ _('Please login to comment.') }} {% endif %} {% 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 %} {{ comment.content }} {% if comment.user_id == current_user.id %}
{% endif %}
{% endfor %}
{% endfor %} {% if not posts %} {% endif %} {% endblock %}