You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
351 B
19 lines
351 B
<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>
|
|
|