getting more database stuff hooked up

This commit is contained in:
2026-08-05 22:38:13 -05:00
parent ac433870c2
commit 9e96151a42
4 changed files with 163 additions and 51 deletions

View File

@@ -1,5 +1,4 @@
<rml>
<head>
<title>Critterfolio</title>
<link type="text/rcss" href="styles/main.rcss" />
@@ -7,7 +6,15 @@
<body data-model="app_data">
<h1>{{page_title}}</h1>
<p>Hello world!</p>
<h2>Critter Roster</h2>
<div class="critter-list">
<div data-for="entry : critters" class="critter-card">
<h3>#{{entry.key}} - {{entry.value.name}}</h3>
<p><strong>Species:</strong> {{entry.value.species}}</p>
<p><strong>Gender:</strong> {{entry.value.gender}}</p>
<p><strong>Notes:</strong> {{entry.value.notes}}</p>
</div>
</div>
</body>
</rml>
</rml>