mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-21 23:42:14 +00:00
13 lines
237 B
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 %} |