diff --git a/paste/templates/paste/history.html b/paste/templates/paste/history.html deleted file mode 100644 index 05786c9..0000000 --- a/paste/templates/paste/history.html +++ /dev/null @@ -1,36 +0,0 @@ -{% 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 %}