{% from 'include/macros.html' import RenderField, QuerySubmitFields %}
{% macro PrintRow(row) %}
{{ row.Timestamp }} |
{{ row.Ip }} |
{{ row.UidId }} |
{{ row.YandexUid }} |
{{ row.Type }} |
{{ row.Reqid|default('') }} |
{{ row.UniqueKey|default('') }} |
{{ row.Token }} |
{% if row.Notes %}
{% if row.Notes.type == 'TRequestData' %}
{% include "request_data.html" %}
{% elif row.Notes is string %}
{{ row.Notes|safe }}
{% elif row.Notes is sequence %}
{{ row.Notes|join(' ')|safe }}
{% else %}
{{ row.Notes|safe }}
{% endif %}
{% endif %}
|
{% endmacro %}
{% extends 'main.html' %}
{% block page_header %}
{{ super() }}
{% if doReq %}
{% endif %}
{% endblock %}
{% block header %}Search by antirobot's eventlog{% endblock %}
{% block content %}
{% if doReq %}
Time |
Ip |
Uid |
YandexUid |
Event type |
Reqid |
UniqueKey |
Token |
|
{% include 'include/info_blocks.html' %}
{% endif %}
{% endblock %}