- Storage: nested object buckets per type, integrated next_id into meta, migration from old flat task:N key format, seeded default types (task/idea/note) - Server: /api/entry-types CRUD + /api/entries replacing /api/tasks, type validation, blocks deletion if entries exist - Frontend: dynamic nav per type, Entry_Type_Dialog, Entry_Dialog with type selector, type chip in All view, Manage Types view Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
439 B
HTML
19 lines
439 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Task Inventory</title>
|
|
<link rel="stylesheet" href="/gitea-markup.css">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Task Inventory</h1>
|
|
<nav id="main-nav"></nav>
|
|
</header>
|
|
<main id="main"></main>
|
|
<script type="module" src="/app.mjs"></script>
|
|
</body>
|
|
</html>
|