1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

templates:

- migrated proxy templates to use new template setup
This commit is contained in:
John Berlin 2019-09-05 16:41:14 -04:00
parent 5ab97a41c2
commit d6ab31d529
No known key found for this signature in database
GPG Key ID: 6EF5E4B442011B02
2 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,9 @@
{% extends "base.html" %}
{% block title %}Download HTTPS Certificate For PyWb Web Archive Replay{% endblock %}
{% block body %}
<h2>HTTPS Certificate For PyWb Web Archive Replay</h2>
{% if not available %}
<p>Sorry, HTTPS support is not configured for this proxy. However, the proxy should work in HTTP mode.</p>
@ -11,3 +17,4 @@
<p>Download for Windows platforms (except if using Firefox. For Firefox, use the above download, even on Windows):</p>
<p><b><a href="{{ p12_path }}">Download Certificate (Window Only)</a></b></p>
{% endif %}
{% endblock %}

View File

@ -1,5 +1,8 @@
<html>
<body>
{% extends "base.html" %}
{% block title %}Pywb Proxy Collection Selector{% endblock %}
{% block body %}
<h2>Pywb Proxy Collection Selector</h2>
{% if coll %}
<p>
@ -21,5 +24,4 @@
</ul>
<p>(Once selected, you will not be prompted again, however you can return to this page to switch collections.)</p>
</body>
</html>
{% endblock %}