Download this file

post_diff.html    24 lines (19 with data), 841 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / {{p1.title}}{% endblock %}
{% block header %}{{p1.title}}{% endblock %}
{% block extra_css %}
<style type="text/css">
.diff_add { text-decoration: underline; background-color: #0f0; }
.diff_sub { text-decoration: line-through; background-color: #f00; }
ins { text-decoration: none; background-color: lightgreen; }
del { text-decoration: none; background-color: pink; }
</style>
{% endblock %}
{% block content %}
<p>Comparing <a href=".?version={{p1.version}}">Version {{p1.version}}</a>
with <a href=".?version={{p2.version}}">Version {{p2.version}}</a></p>
<hr/>
<div style="font-family: fixed">
{{edits|safe}}
</div>
{% endblock %}