mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-01-18 17:14:04 +01:00
129 lines
3.1 KiB
HTML
129 lines
3.1 KiB
HTML
<fieldset style="margin-bottom:20px">
|
|
<legend>{% trans 'Search' %}</legend>
|
|
|
|
<ul>
|
|
<li>
|
|
{% include 'mod/search_form.html' %}
|
|
</li>
|
|
</ul>
|
|
</fieldset>
|
|
|
|
<p style="text-align:center">Showing {{ result_count }} result{% if result_count != 1 %}s{% endif %}.</p>
|
|
|
|
{% if search_type == 'IP_notes' %}
|
|
<table class="modlog">
|
|
<tr>
|
|
<th>{% trans 'IP address' %}</th>
|
|
<th>{% trans 'Staff' %}</th>
|
|
<th>{% trans 'Note' %}</th>
|
|
<th>{% trans 'Date' %}</th>
|
|
</tr>
|
|
{% for note in results %}
|
|
<tr>
|
|
<td class="minimal">
|
|
<a href="?/IP/{{ note.ip }}#notes">{{ note.ip }}</a>
|
|
</td>
|
|
<td class="minimal">
|
|
{% if note.username %}
|
|
<a href="?/new_PM/{{ note.username|e }}">{{ note.username|e }}</a>
|
|
{% else %}
|
|
<em>{% trans 'deleted?' %}</em>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{{ note.body }}
|
|
</td>
|
|
<td class="minimal">
|
|
{{ note.time|date(config.post_date) }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
|
|
|
|
{% if search_type == 'bans' %}
|
|
<table class="modlog" style="width:100%">
|
|
<tr>
|
|
<th>{% trans 'IP address/mask' %}</th>
|
|
<th>{% trans 'Reason' %}</th>
|
|
<th>{% trans 'Board' %}</th>
|
|
<th>{% trans 'Set' %}</th>
|
|
<th>{% trans 'Duration' %}</th>
|
|
<th>{% trans 'Expires' %}</th>
|
|
<th>{% trans 'Seen' %}</th>
|
|
<th>{% trans 'Staff' %}</th>
|
|
</tr>
|
|
{% for ban in results %}
|
|
<tr{% if ban.expires != 0 and ban.expires < time() %} style="text-decoration:line-through"{% endif %}>
|
|
<td style="white-space: nowrap">
|
|
{% if ban.real_ip %}
|
|
<a href="?/IP/{{ ban.ip }}#bans">{{ ban.ip }}</a>
|
|
{% else %}
|
|
{{ ban.ip|e }}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if ban.reason %}
|
|
{{ ban.reason }}
|
|
{% else %}
|
|
-
|
|
{% endif %}
|
|
</td>
|
|
<td style="white-space: nowrap">
|
|
{% if ban.board %}
|
|
{{ config.board_abbreviation|sprintf(ban.board) }}
|
|
{% else %}
|
|
<em>{% trans 'all boards' %}</em>
|
|
{% endif %}
|
|
</td>
|
|
<td style="white-space: nowrap">
|
|
<span title="{{ ban.set|date(config.post_date) }}">
|
|
{{ ban.set|ago }} ago
|
|
</span>
|
|
</td>
|
|
<td style="white-space: nowrap">
|
|
{% if ban.expires == 0 %}
|
|
-
|
|
{% else %}
|
|
{{ (ban.expires - ban.set + time()) | until }}
|
|
{% endif %}
|
|
</td>
|
|
<td style="white-space: nowrap">
|
|
{% if ban.expires == 0 %}
|
|
<em>{% trans 'never' %}</em>
|
|
{% else %}
|
|
{{ ban.expires|date(config.post_date) }}
|
|
{% if ban.expires > time() %}
|
|
<small>(in {{ ban.expires|until }})</small>
|
|
{% endif %}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if ban.seen %}
|
|
{% trans 'Yes' %}
|
|
{% else %}
|
|
{% trans 'No' %}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if ban.username %}
|
|
{% if mod|hasPermission(config.mod.view_banstaff) %}
|
|
<a href="?/new_PM/{{ ban.username|e }}">{{ ban.username|e }}</a>
|
|
{% else %}
|
|
{% if mod|hasPermission(config.mod.view_banquestionmark) %}
|
|
<em>?</em>
|
|
{% else %}
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
{% elseif ban.mod == -1 %}
|
|
<em>system</em>
|
|
{% else %}
|
|
<em>{% trans 'deleted?' %}</em>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %} |