{% extends "base_template.html" %} {% load utilfilters %} {% block title %} Дифф двух сниппетных дампов {% endblock %} {% block menu %} {% endblock %} {% block body %}

Дифф двух сниппетных дампов


{% for error in errors %} {% if forloop.first %}{% endif %} {% endfor %}
{{ snippetsDiffForm.firstDump|safe }}

{{ snippetsDiffForm.secondDump|safe }}

{{ snippetsDiffForm.needTitle }} {{ snippetsDiffForm.needSnippet }}


{% if firstDumpSnipsCount %} Всего сниппетов в первом дампе: {{ firstDumpSnipsCount }}
Всего сниппетов во втором дампе: {{ secondDumpSnipsCount }}
Процент различий по запросам-урлам: {{ queryUrlsDiffPercent }} %
Процент различий по сниппетам: {{ snipsDiffPercent }} %

{% for snip in differentSnips.object_list %} {% endfor %}
{{ snip|getValue:0 }} url: {{ snip|getValue:1 }}
{% autoescape off %}{{ snip|getValue:2 }}{% endautoescape %}
{% autoescape off %}{{ snip|getValue:3 }}{% endautoescape %}
{% autoescape off %}{{ snip|getValue:4 }}{% endautoescape %}
{% autoescape off %}{{ snip|getValue:5 }}{% endautoescape %}
 
{% endif %} {% endblock %}