{% extends "layout.html" %} {% block title %}{{ paste.title|escape }} by {{ paste.author|escape }}{% endblock %} {% block sidebar %}

This Paste

Author
{{ paste.author|escape }}
Date
{{ paste.pub_date|date:"j. N Y H:i" }}
Tags
{% if not paste.tags.all %}not tagged{% endif %} {% for tag in paste.tags.all %} {{ tag.name|escape }}{% if not forloop.last %},{% endif %} {% endfor %}
{% if paste.reply_to %}
Reply To
{{ paste.reply_to.title|escape }} by {{ paste.reply_to.author|escape }} {% endif %}

Actions

{% endblock %} {% block content %}

{{ paste.title|escape }}

{{ paste.code }} {% endblock %}