19 lines
351 B
HTML
19 lines
351 B
HTML
<script>
|
|
let Rows = new GetJson("/api/admin/table/")
|
|
console.log("Rows", Rows)
|
|
</script>
|
|
|
|
<blockstart>
|
|
<h1>Admin Rows</h1>
|
|
|
|
<block x-data="Rows">
|
|
<ul>
|
|
<template x-for="item in theData">
|
|
<li><a x-bind:href="'/admin/table/' + item + '/'">
|
|
<span x-text="item"></span>
|
|
</a></li>
|
|
</template>
|
|
</ul>
|
|
</block>
|
|
|
|
</blockstart>
|