{% extends "base.html" %} {% block title %}Diff: {{ van }} → {{ tot }}{% endblock %} {% block content %}

Diff: Grondwet

{{ van }} → {{ tot }} | +{{ added }} / -{{ removed }} regels

{% for line in diff_lines %} {% if line.startswith('+') and not line.startswith('+++') %}
{{ line }}
{% elif line.startswith('-') and not line.startswith('---') %}
{{ line }}
{% elif line.startswith('@@') %}
{{ line }}
{% elif not line.startswith('diff ') and not line.startswith('index ') %}
{{ line }}
{% endif %} {% endfor %}
{% endblock %}