mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
38 lines
667 B
Text
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>
|
|
}
|