{% extends "dpaste/base.html" %} {% load i18n %} {% block title %}{% trans "Snippet History" %}{% endblock %} {% block options %}
{% csrf_token %} {% blocktrans count snippet_list|length as count %} Do you really want to delete the snippet below? {% plural %} Do you really want to delete the {{ count }} snippets below? {% endblocktrans %} {% trans "No, don't delete" %}
{% endblock %} {% block page %} {% for snippet in snippet_list %}

{% blocktrans with snippet.lexer_name as type %}{{ type }} Snippet{% endblocktrans %} {% blocktrans with snippet.published|timesince as since %}Created {{ since }} ago{% endblocktrans %}

{{ snippet.highlight }} {% empty %}

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

{% endfor %} {% endblock %}