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

Paste #{{ paste.id }}

#}

{{ paste.title }}

{% if paste.user %}
Author
{{ paste.user.display_name }} {% endif %}
Date
{{ paste.pub_date.strftime('%Y-%m-%dT%H:%M:%SZ') }}
Actions
{% if not paste.is_private %} Reply {% endif %} {%- if g.user and paste.user == g.user -%} , Delete {% endif %} {% if parent %}
In reply to
{{ parent.title }} {% endif %} {% if children %}
Replies
{% for childid,childtitle in children -%} {%- if not loop.first %},{% endif %} {{ childtitle }} {%- endfor %} {% endif %}
{{ paste.code }}
{% endblock %}