Started the tailwind conversion process.

This commit is contained in:
Zed A. Shaw 2025-08-10 01:19:30 -04:00
parent ca8f4e194f
commit 9729ebc7ac
22 changed files with 970 additions and 365 deletions

View file

@ -2,6 +2,7 @@
let thePage = new PaginateTable("/api/admin/table/{{ .Table }}");
</script>
<blockstart>
<h1><a href="/admin/table/">&laquo;</a> Admin {{ .Table }}</h1>
<block x-data="thePage">
@ -32,3 +33,4 @@
</template>
</table>
</block>
</blockstart>

View file

@ -2,6 +2,7 @@
let Data = new PaginateTable("/api/admin/table")
</script>
<blockstart>
<h1>Admin Rows</h1>
<block x-data="Data">
@ -15,3 +16,4 @@
</template>
</ul>
</block>
</blockstart>

View file

@ -2,6 +2,7 @@
let Data = new GetJson("/api/admin/new/table/{{ .Table }}");
</script>
<blockstart>
<h1><a href="/admin/table/{{ .Table }}/">&laquo;</a>Admin {{ .Table }}</h1>
<block x-data="Data">
@ -26,3 +27,4 @@
</card>
</form>
</block>
</blockstart>

View file

@ -2,6 +2,7 @@
let Data = new GetJson("/api/admin/table/{{ .Table }}/{{ .Id }}");
</script>
<blockstart>
<h1><a href="/admin/table/{{ .Table }}/">&laquo;</a>Admin {{ .Table }}</h1>
<block x-data="Data">
@ -26,3 +27,4 @@
</card>
</form>
</block>
</blockstart>