Evan Reichard
7c6acad689
All checks were successful
continuous-integration/drone/push Build is passing
29 lines
787 B
Cheetah
29 lines
787 B
Cheetah
{{ $rows := .Rows }}
|
|
{{ $cols := .Columns }}
|
|
{{ $keys := .Keys }}
|
|
<table class="min-w-full leading-normal bg-white dark:bg-gray-700 text-sm">
|
|
<thead class="text-gray-800 dark:text-gray-400">
|
|
<tr>
|
|
{{ range $col := $cols }}
|
|
<th class="p-3 font-normal text-left uppercase border-b border-gray-200 dark:border-gray-800">{{ $col }}</th>
|
|
{{ end }}
|
|
</tr>
|
|
</thead>
|
|
<tbody class="text-black dark:text-white">
|
|
{{ if not $rows }}
|
|
<tr>
|
|
<td class="text-center p-3" colspan="4">No Results</td>
|
|
</tr>
|
|
{{ end }}
|
|
{{ range $row := $rows }}
|
|
<tr>
|
|
{{ range $key := $keys }}
|
|
<td class="p-3 border-b border-gray-200">
|
|
<p>{{ index (fields $row) $key }}</p>
|
|
</td>
|
|
{{ end }}
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|