{% 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('%FT%TZ') }} {% if paste.exp_date and paste.exp_date != paste.pub_date %}
Expires
{{ paste.exp_date.strftime('%FT%TZ') }}{% endif %}
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 %}