mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
895 B
31 lines
895 B
</center>
|
|
<div class="out">
|
|
<div class="diff">
|
|
{% set plus = 0 %}
|
|
{% set minus = 0 %}
|
|
{% set total_change = 0 %}
|
|
{% for line in stdout %}
|
|
|
|
{% if loop.index0 == 0 %}
|
|
<div class="diffHead">{{ line }}<br />
|
|
{% elif loop.index0 == 1 %}
|
|
{{ line }}</div>
|
|
{% elif line.startswith('-') and loop.index0 > 1 %}
|
|
<div class="lineDiffMinus">{{ line }}</div>
|
|
{% set minus = minus + 1 %}
|
|
{% elif line.startswith('+') and loop.index0 > 2 %}
|
|
<div class="lineDiffPlus">{{ line }}</div>
|
|
{% set plus = plus + 1 %}
|
|
{% elif line.startswith('@') %}
|
|
<div class="lineDog">{{ line }}</div>
|
|
{% else %}
|
|
<div class="lineDiff">{{ line }}</div>
|
|
{% endif %}
|
|
{% set total_change = minus + plus %}
|
|
{% if loop.last %}
|
|
<div class="diffHead">Total change: {{ total_change }}, additions: {{ plus }} & deletions: {{ minus }} </div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div> |