pasteque/paste/templates/paste/history.html

37 lines
1.1 KiB
HTML
Raw Normal View History

2013-04-04 17:37:30 +00:00
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans 'Lasts pastes' %}{% endblock %}
{% block content %}
2018-05-07 21:09:06 +00:00
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
<table class="table table-striped table-bordered">
<tr>
<th>#</th>
{% if PASTE.has_title %}
2018-05-07 21:09:06 +00:00
<th>{% trans 'Title' %}</th>
{% endif %}
2018-05-07 21:09:06 +00:00
<th>{% trans 'Language' %}</th>
<th>{% trans 'Size' %}</th>
<th>{% trans 'Paste time' %}</th>
<th>{% trans 'Protection' %}</th>
<th>{% trans 'Views' %}</th>
</tr>
2013-04-04 17:37:30 +00:00
{% for paste in pastes %}
<tr>
<td>{{ paste.id }}</td>
{% if PASTE.has_title %}
2018-05-06 22:55:58 +00:00
<td class="title"><a href="{% url 'paste' slug=paste.slug %}">{{ paste.title|truncatechars:40 }}</a></td>
{% endif %}
2013-04-04 17:37:30 +00:00
<td>{% trans paste.language.name %}</td>
<td>{{ paste.size }}</td>
<td>{{ paste.paste_time }}</td>
<td>{{ paste.viewcount }}</td>
</tr>
{% empty %}
<tr>
<td colspan="8">{% trans 'Nothing has been pasted yet' %}.</td>
</tr>
{% endfor %}
2018-05-07 21:09:06 +00:00
</table>
2013-04-04 17:37:30 +00:00
2018-05-06 22:56:08 +00:00
{% endblock %}