summaryrefslogtreecommitdiff
path: root/kitchen/templates
diff options
context:
space:
mode:
authorTom Flux <tom@tomflux.xyz>2026-06-23 19:55:16 +0100
committerTom Flux <tom@tomflux.xyz>2026-06-23 19:55:16 +0100
commite34081ce36d1993912dad514127924440437a2e9 (patch)
tree01efff278699e0fbf38e77a2000bef0fc71fb6ad /kitchen/templates
parentcdbfabf0ea855df854b2357dc124df03f18d0514 (diff)
Add planning docs: research, requirements, redesign plan
Research of current state, requirements for the web-first pivot (pantry polish -> auth -> MCP), and the phased implementation plan. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'kitchen/templates')
-rw-r--r--kitchen/templates/kitchen/partials/pantry_expiry_edit.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/kitchen/templates/kitchen/partials/pantry_expiry_edit.html b/kitchen/templates/kitchen/partials/pantry_expiry_edit.html
deleted file mode 100644
index ca24716..0000000
--- a/kitchen/templates/kitchen/partials/pantry_expiry_edit.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<tr id="pantry-row-{{ item.id }}">
- <td>{{ item.ingredient.name }}</td>
- <td>{{ item.quantity|floatformat:0 }} {{ item.unit }}</td>
- <td colspan="2">
- <form style="display: flex; gap: 0.4rem; align-items: center;"
- hx-post="{% url 'app-pantry-save-expiry' item.id %}"
- hx-target="#pantry-items"
- hx-swap="innerHTML">
- <input type="date" name="expiry_date" value="{{ item.expiry_date|date:'Y-m-d' }}" style="font-size: 0.8rem;">
- <button type="submit" class="btn btn-primary btn-sm">Save</button>
- <button type="button" class="btn btn-secondary btn-sm"
- hx-get="{% url 'app-pantry-cancel-edit' %}"
- hx-target="#pantry-items"
- hx-swap="innerHTML">Cancel</button>
- </form>
- </td>
-</tr>