rentease/internal/views/report_section.templ
2024-02-10 21:10:33 +01:00

38 lines
667 B
Text

package views
templ ReportSection() {
<div class="grid">
<h2>Your report </h2>
<div>
<button class="outline">Create PDF</button>
</div>
</div>
<figure>
<table role="grid">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Name</th>
<th scope="col">Total (€)</th>
<th scope="col">From</th>
<th scope="col">To</th>
<th scope="col">Platform</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">
<a href="fjkslafj">
12
</a>
</th>
<td>joe</td>
<td></td>
<td>fgsdkjf</td>
<td>jjxlkvj</td>
<td>jjxlkvj</td>
</tr>
</tbody>
</table>
</figure>
}