{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Viewing" %} {% if snippet.title %}{{ snippet.title }}{% else %} Paste #{{ snippet.id}}{% endif %}{% if snippet.author %}{% blocktrans with snippet.author as author %} by {{ author }}{% endblocktrans %}{% endif %}{% endblock %} {% block headline %}

{% trans "Snippet" %} #{{ snippet.pk }} {% if snippet.parent_id %} {% blocktrans with snippet.parent.get_absolute_url as parent_url and snippet.parent.id as parent_id %}(Copy of snippet #{{ parent_id }}){% endblocktrans %} {% endif %} {{ snippet.published|date:_("DATETIME_FORMAT") }} ({% trans "UTC" %})

{% endblock %} {% load dpaste_tags %} {% block content %}
TTL: {{ snippet.expires|timeuntil }} | {% trans "View raw" %} {% if snippet.pk|in_list:snippet_list %} | Delete {% endif %}

{% if snippet.title %}{{ snippet.title }}{% else %} {% trans "Paste" %} #{{ snippet.id}}{% endif %} {% if snippet.author %}{% blocktrans with snippet.author as author %}by {{ author }}{% endblocktrans %}{% endif %}

{# "container" is for google magic. All
 content has to go into one line... it just does. #}
    
    {% for line in snippet.content_splitted %}
  1. {% if line %}{{ line|safe }}{% else %} {% endif %}
  2. {% endfor %}

{% trans "Revise paste" %} →

{% endblock %} {% block script_footer %} {% endblock %}