We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2189b60 + c8a78c2 commit 537dd1fCopy full SHA for 537dd1f
website/templates/home.html
@@ -4,8 +4,14 @@
4
5
{% for client in clients %}
6
<pre>
7
-{{ client.client_info|tojson }}
8
-{{ client.client_metadata|tojson }}
+<strong>Client Info</strong>
+ {%- for key in client.client_info %}
9
+ <strong>{{ key }}: </strong>{{ client.client_info[key] }}
10
+ {%- endfor %}
11
+<strong>Client Metadata</strong>
12
+ {%- for key in client.client_metadata %}
13
+ <strong>{{ key }}: </strong>{{ client.client_metadata[key] }}
14
15
</pre>
16
<hr>
17
{% endfor %}
0 commit comments