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

{{ _('Edit Post') }}

{% 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.') }}
{{ _('Cancel') }}
{% if post.uploads %}

{{ _('Current Uploads') }}

{% for upload in post.uploads %}
{% if upload.filetype.startswith('image') %} {% elif upload.filetype.startswith('video') %} {% elif upload.filetype.startswith('audio') %} {% else %} {{ upload.filename }} {% endif %}
{% endfor %}
{% else %}

{{ _('No uploads found for this post.') }}

{% endif %} {% endblock %}