1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 16:00:22 +01:00
vichan/templates/mod/log.html

48 lines
1.2 KiB
HTML
Raw Normal View History

2012-04-13 02:41:30 +02:00
<table class="modlog">
<tr>
2012-05-05 17:33:10 +02:00
<th>{% trans 'Staff' %}</th>
<th>{% trans 'IP address' %}</th>
<th>{% trans 'Time' %}</th>
<th>{% trans 'Board' %}</th>
<th>{% trans 'Action' %}</th>
2012-04-13 02:41:30 +02:00
</tr>
{% for log in logs %}
2012-04-13 12:48:37 +02:00
<tr>
<td class="minimal">
2012-05-05 17:33:10 +02:00
{% if log.username %}
<a href="?/new_PM/{{ log.username|e }}">{{ log.username|e }}</a>
{% elseif log.mod == -1 %}
<em>system</em>
{% else %}
<em>{% trans 'deleted?' %}</em>
{% endif %}
2012-04-13 12:48:37 +02:00
</td>
<td class="minimal">
<a href="?/IP/{{ log.ip }}">{{ log.ip }}</a>
</td>
<td class="minimal">
<span title="{{ log.time|date(config.post_date) }}">{{ log.time|ago }}</span>
</td>
<td class="minimal">
{% if log.board %}
<a href="?/{{ config.board_path|sprintf(log.board) }}{{ config.file_index }}">{{ config.board_abbreviation|sprintf(log.board) }}</a>
{% else %}
-
{% endif %}
</td>
<td>
{{ log.text }}
</td>
</tr>
2012-04-13 02:41:30 +02:00
{% endfor %}
</table>
2012-04-13 13:43:01 +02:00
{% if count > logs|count %}
<p class="unimportant" style="text-align:center;word-wrap:break-word">
2012-04-21 07:15:32 +02:00
{% for i in range(0, (count - 1) / config.mod.modlog_page) %}
2012-04-13 13:43:01 +02:00
<a href="?/log/{{ i + 1 }}">[{{ i + 1 }}]</a>
{% endfor %}
</p>
{% endif %}
2012-04-13 12:57:59 +02:00