Skip to content

Commit 537dd1f

Browse files
authored
Merge pull request #70 from AlpacaMax/work
Create better alignment for client_info and client_metadata in home.html
2 parents 2189b60 + c8a78c2 commit 537dd1f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

website/templates/home.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@
44

55
{% for client in clients %}
66
<pre>
7-
{{ client.client_info|tojson }}
8-
{{ client.client_metadata|tojson }}
7+
<strong>Client Info</strong>
8+
{%- 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+
{%- endfor %}
915
</pre>
1016
<hr>
1117
{% endfor %}

0 commit comments

Comments
 (0)