forked from docusign/code-examples-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_done.html
More file actions
22 lines (17 loc) · 585 Bytes
/
example_done.html
File metadata and controls
22 lines (17 loc) · 585 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- extend base layout --> {% extends "base.html" %} {% block content %}
<h2>{{ h1 }}</h2>
<p>{{ message | safe }}</p>
{% if json %}
<!-- Data from the server -->
<div id="server_json_data" data-server-json-data='{"json": {{ json | safe }} }' class="hidden"></div>
<p><pre class="json-display"><code id="json-display"></code></pre></p>
{% endif %}
{% if changed_settings %}
<ul>
{% for k, v in changed_settings.items() %}
<li><b>{{ k }}:</b> {{ v }}</li>
{% endfor %}
</ul>
{% endif %}
<p><a href="/">Continue</a></p>
{% endblock %}