zedshaw.games/views/admin/table/contents.html

20 lines
431 B
HTML

<script>
let Tables = new GetJson("/api/admin/table/{{ .Table }}/")
console.log("Tables", Tables)
</script>
<blockstart>
<h1>Admin Tables</h1>
<block x-data="Tables">
<ul>
<template x-for="item in theData">
<table>
<td><a x-bind:href="'/admin/table/{{ .Table }}/' + item.id + '/'" x-text="item.id"></td>
<td x-text="item.Email"></td>
</table>
</template>
</ul>
</block>
</blockstart>