From 2ec9baa0b1618e695340813a9942ce3919305b49 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 21 Apr 2023 09:34:04 +0200 Subject: [PATCH] Dropping history. --- paste/templates/paste/history.html | 36 ------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 paste/templates/paste/history.html 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 %}