1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<!DOCTYPE html>
<html lang="en"><head>
<title>Comparison of modified test/ PDF files</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
</style>
</head>
<body>
{% if is_shrunk %}
<blockquote>
⚠️ Too many PDF files changed ({{ changes_pdf_files_count }}).
<br>
Only PDF files in {{ VIEW_SLICE }} are displayed.
<br>
Change the value of <code>VIEW_SLICE</code> to display the other documents.
</blockquote>
{% endif %}
<br>
<b>LEFT:</b> Version from git ref: <code>{{ GIT_REF }}</code>
-
<b>RIGHT:</b> Version from current repository folder
<br><br>
{% for changed_pdf_file in changed_pdf_files %}
<span class="filename">{{ changed_pdf_file }}</span>
<div class="side-by-side">
<embed src="{{ GIT_REF }}-checkouts/{{ changed_pdf_file }}" width="500px" height="707px" />
<embed src="{{ changed_pdf_file }}" width="500px" height="707px" />
</div>
{% endfor %}
</body>
</html>
|