{% load i18n %} {% if error_message %}

{{ error_message }}

{% endif %} {% if PASTE.has_meta_table %}
# {% trans 'Language' %} {% trans 'Size' %} {% trans 'Paste time' %} {% trans 'Visibility' %} {% trans 'Protection' %} {% trans 'Views' %} {% trans 'Expire time' %}
{{ paste.id }} {% trans paste.language.name %} {{ paste.size }} {{ paste.paste_time }} {% if paste.private %} {% trans 'private' %}{% else %} {% trans 'public' %}{% endif %} {% if paste.password %} {% trans 'locked' %}{% else %} {% trans 'open' %}{% endif %} {{ paste.viewcount }}{% if paste.lifecount > 0 %}/{{ paste.lifecount }}{% endif %} {% if paste.expiration_time %}{{ paste.expiration_time }}{% else %}{% trans 'None' %}{% endif %}
{% endif %}
{% if PASTE.has_title %}

{{ paste.title|truncatechars:50 }}

{% endif %}