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

52 lines
1.4 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 if log.text != 'Looked at dashboard' %}
2012-04-13 12:48:37 +02:00
<tr>
<td class="minimal">
2012-05-05 17:33:10 +02:00
{% if log.username %}
2012-08-27 17:47:26 +02:00
<a href="?/log:{{ log.username|e }}">{{ log.username|e }}</a>
2012-05-05 17:33:10 +02:00
{% 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">
{% if mod|hasPermission(config.mod.show_ip_modlog) %}
<a href="?/IP/{{ log.ip }}">{{ log.ip }}</a>
{% else %}
<em>hidden</em>
{% endif %}
2012-04-13 12:48:37 +02:00
</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-08-27 14:13:47 +02:00
<a href="?/log{% if username %}:{{ username }}{% endif %}/{{ i + 1 }}">[{{ i + 1 }}]</a>
2012-04-13 13:43:01 +02:00
{% endfor %}
</p>
{% endif %}
2012-04-13 12:57:59 +02:00