{% extends "layout.html" %} {% block title %}Paste #{{ paste.id }}{% endblock %} {% block body %}

Paste #{{ paste.id }}

{% if paste.user %}
Author
{{ paste.user.display_name }} {% endif %}
Date
{{ paste.pub_date.strftime('%Y-%m-%d @ %H:%M') }}
Actions
Reply {%- if g.user and paste.user == g.user -%} , Delete {% endif %} {% if paste.parent_id %}
In reply to
#{{ paste.parent_id }} {% endif %} {% if paste.children %}
Replies
{% for child in paste.children -%} {%- if not loop.first %},{% endif %} #{{ child.id }} {%- endfor %} {% endif %}
{{ paste.code }}
{% endblock %}