{% extends "base.html" %} {% block title %}Paste {{ paste.id }}{% endblock %} {% block content %} {% if paste.owner_id == current_user.id %} {% endif %}

Paste {{ paste.id }}

{% if paste.filename and '.' in paste.filename %} Extension: {{ paste.filename.split('.')[-1] }} | {% endif %} MIME Type: {{ paste.content_type }} | Language: {{ paste.language }} | Size: {% if paste.size < 1024 %} {{ paste.size }} bytes {% elif paste.size < 1024 * 1024 %} {{ '%.2f' | format(paste.size / 1024) }} KB {% else %} {{ '%.2f' | format(paste.size / (1024 * 1024)) }} MB {% endif %}

{% if paste.owner_id == current_user.id %} {% endif %} {% if current_user.is_authenticated %} {% endif %} {% if can_edit %} {% endif %} {% if current_user.is_authenticated %} {% endif %}

    
{% if not is_markdown %} {% endif %}
{% if is_markdown %}
{{ md_html_code|safe }}
{% else %}
{{ html_code|safe }}
{% endif %}

View the raw version here.

{% endblock %} {% block scripts %} {{ super() }} {% endblock %}