{% extends "npb/base.html" %} {% load static %} {% load i18n %} {% block headers %} {% endblock %} {% block title %}{% trans "Untitled" as untitled %}{{ paste.title|default:untitled }}{% endblock %} {% block content %}
{% trans "Untitled" as untitled %}

{{ paste.title|default:untitled }}

{% trans "anonymous" as anonymous %} {% blocktrans with author=paste.author|default:anonymous date=paste.created_on %}By {{ author }} on {{ date }}{% endblocktrans %} {% if paste.edited %}
{% blocktrans with date=paste.edited_on %}Edited on {{ date }}{% endblocktrans %} {% endif %} {% if paste.expire_on %}
{% blocktrans with date=paste.expire_on %}Expires on {{ date }}{% endblocktrans %} {% endif %}

{% if paste.is_suspended %}

{% trans 'This paste has been suspended.' %}

{% trans "No reason provided" as no_reason %}

{{ paste.suspension_reason|default:no_reason }}

{% else %} {% endif %} {{ paste.formated_content|safe }}
{% endblock %}