{% 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 %}