2022-07-21 12:52:10 +00:00
|
|
|
<div id="meta">
|
2022-07-21 12:52:24 +00:00
|
|
|
<div class="content" style="max-height: 30em; overflow: auto;">
|
2022-07-21 12:52:41 +00:00
|
|
|
<div class="table-container">
|
|
|
|
{% for item in meta %}
|
|
|
|
<table class="table is-striped is-fullwidth is-hoverable">
|
|
|
|
<tbody>
|
|
|
|
{% if 'ts' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>ts</th>
|
|
|
|
<td>
|
|
|
|
<p>{{ item.date }}</p>
|
|
|
|
<p>{{ item.time }}</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'nick' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>nick</th>
|
|
|
|
<td>{{ item.nick }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'ident' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>ident</th>
|
|
|
|
<td>{{ item.ident }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'host' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>host</th>
|
|
|
|
<td>{{ item.host }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'realname' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>realname</th>
|
|
|
|
<td>{{ item.realname }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'status' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>status</th>
|
|
|
|
<td>{{ item.status }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'server' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>server</th>
|
|
|
|
<td>{{ item.server }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% if 'channel' in item %}
|
|
|
|
<tr>
|
|
|
|
<th>channel</th>
|
|
|
|
<td>{{ item.channel }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<hr/>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2022-07-21 12:52:24 +00:00
|
|
|
</div>
|
2022-07-21 12:52:10 +00:00
|
|
|
</div>
|