{% extends 'base_mt.html' %} {% load static %} {% load cut_bold %} {% load add_space %} {% load reducing_str %} {% load strip_len %} {% load i18n %} {% block leftbar %}
{% endblock %} {% block content %}
{% for key in rows %} {% endfor %}
{% trans 'BT' context 'model_tuning' %} {% trans 'Info' context 'model_tuning' %} {% trans 'Act.' context 'model_tuning' %} {% trans 'MZ details' context 'model_tuning' %}
{{ key.method }}, {{ key.waf_id }}
{{ key.timestamp }}
{% if key.uri %}
{{ key.uri }}
{% endif %} {% if key.args %}
{% if '[cutted]' in key.args %} {{ key.args|cut_bold }}[cutted] {% else %} {{ key.args }} {% endif %}
{% endif %} {% if key.cookie %} {% endif %} {% if key.ua %}
{% if '[cutted]' in key.ua %} {{ key.ua|cut_bold }}[cutted] {% else %} {{ key.ua }} {% endif %}
{% endif %} {% if key.body %}
{% if '[cutted]' in key.body %} {% if key.body|cut_bold|count_lines > 15 %}
{{ key.body|cut_bold|strip_lines_len:15|linebreaks }}

{% trans 'Show' context 'btn mt' %}

{% elif key.body|cut_bold|length > 1500 %}
{{ key.body|cut_bold|strip_len:1500|linebreaks }}

{% trans 'Show' context 'btn mt' %}

{% else %} {{ key.body|cut_bold|linebreaks }}[cutted] {% endif %} {% elif key.body|count_lines > 15 %}
{{ key.body|strip_lines_len:15|linebreaks }}

{% trans 'Show' context 'btn mt' %}

{% elif key.body|length > 1500 %}
{{ key.body|strip_len:1500|linebreaks }}

{% trans 'Show' context 'btn mt' %}

{% else %} {{ key.body|linebreaks }} {% endif %}
{% endif %} {% if key.other_headers %}
{{ key.other_headers|add_space|linebreaksbr }}
{% endif %} {% if key.referer %}
{{ key.referer }}
{% endif %}
{% if rows.has_next %} {% endif %} {% csrf_token %} {% include 'smain/_check.html' %} {% include 'smain/_export.html' %} {% include 'smain/_confirmation.html' %} {% include 'smain/_detail.html' %} {% include 'smain/_custom_check.html' %} {% if t %} {% include 'smain/_edit.html' %} {% endif %} {% endblock content %} {% block js %} {{ block.super }} {% endblock %}