Tier 3: appointments CRUD + time tracking with topbar timer

This commit is contained in:
2026-02-28 04:38:56 +00:00
parent 82d03ce23a
commit 6ad642084d
13 changed files with 1075 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{% extends "base.html" %}
{% block content %}
<div class="page-header">
<h1 class="page-title">{{ page_title }}</h1>
</div>
<div class="card">
<form method="post" action="/weblinks/folders/create">
<div class="form-grid">
<div class="form-group full-width">
<label class="form-label">Folder Name *</label>
<input type="text" name="name" class="form-input" required placeholder="Folder name...">
</div>
<div class="form-group">
<label class="form-label">Parent Folder</label>
<select name="parent_id" class="form-select">
<option value="">None (top-level)</option>
{% for f in parent_folders %}
<option value="{{ f.id }}">{{ f.name }}</option>
{% endfor %}
</select>
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-primary">Create Folder</button>
<a href="/weblinks" class="btn btn-secondary">Cancel</a>
</div>
</form>
</div>
{% endblock %}