37 lines
934 B
HTML
37 lines
934 B
HTML
{# vim: set filetype=html: #}
|
|
{% extends "base" %}
|
|
{% block body %}
|
|
<div class="accordion" id="my_tables">
|
|
<div class="accordion-item">
|
|
<h2 class="accordion-header">
|
|
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#first" aria-expanded="false" aria-controls="first">
|
|
First
|
|
</button>
|
|
</h2>
|
|
<div id="first" class="accordion-collapse collapse" data-bs-parent="#my_tables">
|
|
<div class="accordion-body">
|
|
<h3>Name of first table <a class="btn btn-primary" href="table.html">Open</a></h3>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>name</th>
|
|
<th>...</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>one</td>
|
|
<td>...</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock body %}
|
|
|