{% extends "base.html" %} {% block title %}Paste Settings{% endblock %} {% block content %}

Paste Settings: paste_{{ paste.id }}.{{ paste.get_extension() }}

ID{{ paste.id }}
Filename{{ paste.filename }}
Content Type{{ paste.content_type }}
Size (bytes){{ paste.size }}
Created At{{ paste.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
Last Edited At{{ paste.last_edited_at.strftime('%Y-%m-%d %H:%M:%S') if paste.last_edited_at else 'Never' }}
Owner ID{{ paste.owner_id }}
User ID{{ paste.user_id }}
Private{{ 'Yes' if paste.private else 'No' }}
Is Favorite?{{ 'Yes' if current_user in paste.favorites else 'No' }}
Shared With {% if paste.shared_with %} {{ paste.shared_with | map(attribute='username') | join(', ') }} {% else %} Nobody {% endif %}
{% if paste.content_type.startswith('text/') %}
{% endif %}
Back
{% endblock %}