{% extends "dpaste/base.html" %} {% load i18n %} {% block title %}{{ dpaste_application_name }}/{{ snippet.secret_id }} ({{ snippet.lexer_name }}){% endblock %} {% block body_type %}{%endblock %} {% block headline %}
{{ request.build_absolute_uri }}
{% endblock %} {% block options %}
{% trans "Snippet content copied to clipboard." %}
{% csrf_token %} {% trans "Are you sure to delete this snippet?" %} {% trans "No, don't delete" %}
{% endblock %} {% block page %} {% if snippet.expire_type == 3 %}

{% trans "This is a one-time snippet." %} {% if snippet.remaining_views > 1 %} {% blocktrans with remaining=snippet.remaining_views %}It is automatically removed after {{ remaining }} further views.{% endblocktrans %} {% elif snippet.remaining_views == 1 %} {% trans "It is automatically removed after the next view." %} {% else %} {% trans "It cannot be viewed again." %} {% endif %}

{% endif %} {% if diff %}

{% trans "Comparison with previous snippet " %}

{{ diff|safe }}
{% endif %} {{ snippet.highlight }}

{% trans "Edit this Snippet" %}

{% include "dpaste/includes/form.html" %}
{% endblock %}