generated from alecodes/base-template
26 lines
657 B
HTML
26 lines
657 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="msp-text-center">Database</th>
|
|
<th class="msp-text-center">Version</th>
|
|
<th class="msp-text-center">Database Name</th>
|
|
<th class="msp-text-center">Current User</th>
|
|
<th class="msp-text-center">Current Timestamp</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr>
|
|
<th>{{ row.database }}</th>
|
|
<th>{{ row.version }}</th>
|
|
<th>{{ row.current_database }}</th>
|
|
<th>{{ row.current_user }}</th>
|
|
<th>{{ row.current_timestamp }}</th>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock content %}
|