Is there a method to get the user or spawner wrapper objects instead of the ORM from user.all_shared_with_me
in Jinja?
{% set shares = user.all_shared_with_me|list %}
{% if shares | length > 0 %}
<table class="server-table table table-striped">
<thead>
<tr>
<th>Server Name</th>
<th>URL</th>
<th>Artifact Storage</th>
<th>Last Activity</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for share in shares %}
{% set user = share.owner %}
{% set spawner = share.spawner %}
...
Or a method to know if the spawner ORM is active or ready?