mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-13 02:47:48 +00:00
18 lines
351 B
HTML
18 lines
351 B
HTML
{%extends 'base.html'%} {%block content%} {% if user %}
|
|
<style>
|
|
pre {
|
|
white-space: wrap;
|
|
}
|
|
</style>
|
|
<div>Logged in as <strong>{{user}}</strong></div>
|
|
|
|
{% for client in clients %}
|
|
<pre>
|
|
{{ client.client_info|tojson }}
|
|
{{ client.client_metadata|tojson }}
|
|
</pre>
|
|
<hr />
|
|
{% endfor %} {% else %}
|
|
<div>Not logged in</div>
|
|
{% endif %} {% endblock %}
|