Files
IfcOpenShell/src/foundationserver/bcfserver/foundation/templates/clientdata.html
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
351 B
HTML
Raw Normal View History

2021-08-04 07:44:24 +05:30
{%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 %}