{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Lasts pastes' %}{% endblock %} {% block content %} {% if error_message %}

{{ error_message }}

{% endif %} {% if PASTE.has_title %} {% endif %} {% for paste in pastes %} {% if PASTE.has_title %} {% endif %} {% empty %} {% endfor %}
#{% trans 'Title' %}{% trans 'Language' %} {% trans 'Size' %} {% trans 'Paste time' %} {% trans 'Protection' %} {% trans 'Views' %}
{{ paste.id }}{{ paste.title|truncatechars:40 }}{% trans paste.language.name %} {{ paste.size }} {{ paste.paste_time }} {{ paste.viewcount }}
{% trans 'Nothing has been pasted yet' %}.
{% endblock %}