{% extends "khaganat/base.html" %} {% load bulma_tags %} {% load static %} {% load i18n %} {% block headers %} {% endblock %} {% block title %}{% trans "Untitled" as untitled %}{{ paste.title|default:untitled }}{% endblock %} {% block content %}
{% if paste.is_suspended %} {% else %} {% trans "Untitled" as untitled %} {% trans 'report this paste'|capfirst %}

{{ 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 %}

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