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

{{ error_message }}

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