{% trans 'Search' %}

Showing {{ result_count }} result{% if result_count != 1 %}s{% endif %}.

{% if search_type == 'IP_notes' %} {% for note in results %} {% endfor %}
{% trans 'IP address' %} {% trans 'Staff' %} {% trans 'Note' %} {% trans 'Date' %}
{{ note.ip }} {% if note.username %} {{ note.username|e }} {% else %} {% trans 'deleted?' %} {% endif %} {{ note.body }} {{ note.time|date(config.post_date) }}
{% endif %} {% if search_type == 'bans' %} {% for ban in results %} {% endfor %}
{% trans 'IP address/mask' %} {% trans 'Reason' %} {% trans 'Board' %} {% trans 'Set' %} {% trans 'Duration' %} {% trans 'Expires' %} {% trans 'Seen' %} {% trans 'Staff' %}
{% if ban.single_addr %} {{ ban.mask }} {% else %} {{ ban.mask|e }} {% endif %} {% if ban.reason %} {{ ban.reason }} {% else %} - {% endif %} {% if ban.board %} {{ config.board_abbreviation|sprintf(ban.board) }} {% else %} {% trans 'all boards' %} {% endif %} {{ ban.created|ago }} ago {% if ban.expires == 0 %} - {% else %} {{ (ban.expires - ban.created + time()) | until }} {% endif %} {% if ban.expires == 0 %} {% trans 'never' %} {% else %} {{ ban.expires|date(config.post_date) }} {% if ban.expires > time() %} (in {{ ban.expires|until }}) {% endif %} {% endif %} {% if ban.seen %} {% trans 'Yes' %} {% else %} {% trans 'No' %} {% endif %} {% if ban.username %} {% if mod|hasPermission(config.mod.view_banstaff) %} {{ ban.username|e }} {% else %} {% if mod|hasPermission(config.mod.view_banquestionmark) %} ? {% else %} {% endif %} {% endif %} {% elseif ban.creator == -1 %} system {% else %} {% trans 'deleted?' %} {% endif %}
{% endif %} {% if search_type == 'log' %} {% for log in results %} {% endfor %}
{% trans 'Staff' %} {% trans 'IP address' %} {% trans 'Time' %} {% trans 'Board' %} {% trans 'Action' %}
{% if log.username %} {{ log.username|e }} {% elseif log.mod == -1 %} system {% else %} {% trans 'deleted?' %} {% endif %} {{ log.ip }} {{ log.time|ago }} {% if log.board %} {{ config.board_abbreviation|sprintf(log.board) }} {% else %} - {% endif %} {{ log.text }}
{% endif %} {% if search_type == 'posts' %} {% for post in results %} {% endfor %}
Time Board ID Thread IP Name Subject File Body (snippet)
{{ post.time | ago }} ago {{ config.board_abbreviation|sprintf(post.board) }} {% if post.thread %} {% set thread = post.thread %} {% else %} {% set thread = post.id %} {% endif %} {{ post.id }} {% if post.thread %} {{ post.thread }} {% else %} (OP) {% endif %} {% if mod|hasPermission(config.mod.show_ip, post.board) %} {{ post.ip }} {% else %} hidden {% endif %} {% if post.email|length > 0 %} {# start email #} {% endif %} {% if capcode %} {{ capcode.cap }} {% endif %} {% if post.subject %} {{ post.subject }} {% else %} – {% endif %} {% if post.file %} {{ post.filename }} ({{ post.filesize | filesize }}) {% else %} – {% endif %} {{ post.snippet }}
{% endif %} {% if result_count > results|count %}

{% for i in range(0, (result_count - 1) / config.mod.search_page) %} [{{ i + 1 }}] {% endfor %}

{% endif %}