Files
IfcOpenShell/src/foundationserver/bcfserver/foundation/templates/clientdata.html
T
2021-08-12 17:10:25 +10:00

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 %}