{% if error %}

{{ error }}

{% else %} {% if not has_changes %}

No differences found between versions from {{ base_time }} and {{ compare_time }}

{% else %}
{% for line in diff %} {% with first_char=line|slice:":1" %} {% if first_char == "+" %}
{{ line }}
{% elif first_char == "-" %}
{{ line }}
{% else %}
{{ line }}
{% endif %} {% endwith %} {% endfor %}
{% endif %} {% endif %}