{% extends "dpaste/base.html" %} {% load i18n %} {% load dpaste_tags %} {% block title %}Snippet History{% endblock %} {% block headline %}Snippet History{% endblock %} {% block dpaste_nav_history %}active{% endblock %} {% block page %}
{% for snippet in snippet_list %}

{% blocktrans with snippet.published|timesince as since %}{{ since }} ago{% endblocktrans %}

{% include "dpaste/snippet_pre.html" %} {% empty %}

{% trans "No snippets saved. Either all your snippets are expired or your cookie has changed." %}

{% endfor %}

Delete all your snippets.

{% endblock %}