Files
PyRIGS/RIGS/templates/RIGS/event_revision.html

13 lines
237 B
HTML

{% extends 'base.html' %}
{% block title %}Versions{% endblock %}
{% block content %}
{% for field, change in diff.items %}
{{ change }}<br>
{% autoescape off %}
{{ change }}
{% endautoescape %}
<br>
{% endfor %}
{% endblock %}